Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
PartAI
/
Dorna-Llama3-8B-Instruct
like
34
Running
on
L4
App
Files
Files
Community
tabedini
commited on
Jul 20
Commit
79322b9
•
1 Parent(s):
da2e442
Create utils.py
Browse files
Files changed (1)
hide
show
utils.py
+9
-0
utils.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import json
2
+
3
+
def load_list_from_json(file_path):
4
+
with open(file_path, 'r', encoding='utf-8') as file:
5
+
return json.load(file)
6
+
7
+
8
+
if __name__ == '__main__':
9
+
pass