Spaces:
Running
Running
Commit
·
b451d4a
1
Parent(s):
0e0fda4
Update .DS_Store file in examples directory to reflect changes in project assets.
Browse files- .gitignore +58 -0
- README.md +1 -0
- examples/.DS_Store +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Video files
|
| 2 |
+
*.mp4
|
| 3 |
+
*.avi
|
| 4 |
+
*.mov
|
| 5 |
+
*.mkv
|
| 6 |
+
*.flv
|
| 7 |
+
*.wmv
|
| 8 |
+
*.webm
|
| 9 |
+
|
| 10 |
+
# OS generated files
|
| 11 |
+
.DS_Store
|
| 12 |
+
.DS_Store?
|
| 13 |
+
._*
|
| 14 |
+
.Spotlight-V100
|
| 15 |
+
.Trashes
|
| 16 |
+
ehthumbs.db
|
| 17 |
+
Thumbs.db
|
| 18 |
+
|
| 19 |
+
# Python
|
| 20 |
+
__pycache__/
|
| 21 |
+
*.py[cod]
|
| 22 |
+
*$py.class
|
| 23 |
+
*.so
|
| 24 |
+
.Python
|
| 25 |
+
build/
|
| 26 |
+
develop-eggs/
|
| 27 |
+
dist/
|
| 28 |
+
downloads/
|
| 29 |
+
eggs/
|
| 30 |
+
.eggs/
|
| 31 |
+
lib/
|
| 32 |
+
lib64/
|
| 33 |
+
parts/
|
| 34 |
+
sdist/
|
| 35 |
+
var/
|
| 36 |
+
wheels/
|
| 37 |
+
pip-wheel-metadata/
|
| 38 |
+
share/python-wheels/
|
| 39 |
+
*.egg-info/
|
| 40 |
+
.installed.cfg
|
| 41 |
+
*.egg
|
| 42 |
+
MANIFEST
|
| 43 |
+
|
| 44 |
+
# Virtual environments
|
| 45 |
+
venv/
|
| 46 |
+
env/
|
| 47 |
+
ENV/
|
| 48 |
+
.venv/
|
| 49 |
+
|
| 50 |
+
# IDE
|
| 51 |
+
.vscode/
|
| 52 |
+
.idea/
|
| 53 |
+
*.swp
|
| 54 |
+
*.swo
|
| 55 |
+
|
| 56 |
+
# Temporary files
|
| 57 |
+
*.tmp
|
| 58 |
+
*.temp
|
README.md
CHANGED
|
@@ -7,6 +7,7 @@ sdk: gradio
|
|
| 7 |
sdk_version: 5.38.2
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
|
|
|
| 10 |
license: apache-2.0
|
| 11 |
short_description: Tool for frame-by-frame video or image metric comparison
|
| 12 |
---
|
|
|
|
| 7 |
sdk_version: 5.38.2
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
+
python_version: 3.12
|
| 11 |
license: apache-2.0
|
| 12 |
short_description: Tool for frame-by-frame video or image metric comparison
|
| 13 |
---
|
examples/.DS_Store
CHANGED
|
Binary files a/examples/.DS_Store and b/examples/.DS_Store differ
|
|
|