--unset
commited on
Commit
•
1d76538
1
Parent(s):
adc5f92
License
Browse files- .gitattributes +1 -0
- README.md +1 -1
.gitattributes
CHANGED
@@ -56,3 +56,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
56 |
# Video files - compressed
|
57 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
58 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
56 |
# Video files - compressed
|
57 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
58 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
59 |
+
videos/* filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -47,7 +47,7 @@ with open(videos_file, 'r', encoding='utf-8') as f:
|
|
47 |
captions = [caption.strip() for caption in captions]
|
48 |
video_paths = [video_path.strip() for video_path in video_paths]
|
49 |
|
50 |
-
assert len(captions) == len(video_paths), f"captions.txt { len(captions)}
|
51 |
|
52 |
data = {
|
53 |
'text': captions,
|
|
|
47 |
captions = [caption.strip() for caption in captions]
|
48 |
video_paths = [video_path.strip() for video_path in video_paths]
|
49 |
|
50 |
+
assert len(captions) == len(video_paths), f"captions.txt { len(captions)} and {len(video_paths)}videos.txt line not match"
|
51 |
|
52 |
data = {
|
53 |
'text': captions,
|