Spaces:
Runtime error
Runtime error
ajaypandey1585
commited on
Commit
•
1197676
1
Parent(s):
7ce578b
Upload 3 files
Browse files- .gitattributes +2 -0
- requirements.txt +5 -0
.gitattributes
CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
# Ignore all differences in line endings
|
37 |
+
* -crlf
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# "Freeze" the dependencies, storing the list into a file
|
2 |
+
pip3 freeze /> requirements.txt
|
3 |
+
|
4 |
+
# If you want to install the dependencies of this project, run this
|
5 |
+
pip3 install -r requirements.txt
|