Spaces:
Sleeping
Sleeping
vitorcalvi
commited on
Commit
•
4e65ec6
1
Parent(s):
586970e
pre-launch
Browse files
README.md
CHANGED
@@ -32,3 +32,28 @@ This project utilizes various Python scripts for different aspects of analysis a
|
|
32 |
- `speech_stress_analysis.py`: Analyzes stress levels from speech.
|
33 |
|
34 |
These scripts combine to provide comprehensive analysis capabilities for various aspects of human behavior and physiology.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
- `speech_stress_analysis.py`: Analyzes stress levels from speech.
|
33 |
|
34 |
These scripts combine to provide comprehensive analysis capabilities for various aspects of human behavior and physiology.
|
35 |
+
|
36 |
+
## Upload Trick to HG
|
37 |
+
|
38 |
+
# Track large files with Git LFS
|
39 |
+
|
40 |
+
git lfs track "assets/models/_.dat"
|
41 |
+
git lfs track "assets/models/_.pt"
|
42 |
+
|
43 |
+
# Add the .gitattributes file and commit it
|
44 |
+
|
45 |
+
git add .gitattributes
|
46 |
+
git commit -m "Track large files with Git LFS"
|
47 |
+
|
48 |
+
# Add your large files and commit them
|
49 |
+
|
50 |
+
git add assets/models/shape_predictor_68_face_landmarks.dat
|
51 |
+
git add assets/models/FER_dinamic_LSTM_IEMOCAP.pt
|
52 |
+
git add assets/models/FER_static_ResNet50_AffectNet.pt
|
53 |
+
git commit -m "Add large files"
|
54 |
+
|
55 |
+
# Add remaining files, commit, and push
|
56 |
+
|
57 |
+
git add .
|
58 |
+
git commit -m 'pre-launch'
|
59 |
+
git push origin main --force
|