Spaces:
Running
on
Zero
Running
on
Zero
Upload 3 files
Browse files- gitignore +91 -0
- packages.txt +1 -0
- requirements.txt +3 -0
gitignore
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# C extensions
|
7 |
+
*.so
|
8 |
+
|
9 |
+
# Distribution / packaging
|
10 |
+
.Python
|
11 |
+
env/
|
12 |
+
.env/
|
13 |
+
build/
|
14 |
+
develop-eggs/
|
15 |
+
dist/
|
16 |
+
downloads/
|
17 |
+
eggs/
|
18 |
+
.eggs/
|
19 |
+
lib/
|
20 |
+
lib64/
|
21 |
+
parts/
|
22 |
+
sdist/
|
23 |
+
var/
|
24 |
+
*.egg-info/
|
25 |
+
.installed.cfg
|
26 |
+
*.egg
|
27 |
+
|
28 |
+
# PyInstaller
|
29 |
+
# Usually these files are written by a python script from a template
|
30 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
31 |
+
*.manifest
|
32 |
+
*.spec
|
33 |
+
|
34 |
+
# Installer logs
|
35 |
+
pip-log.txt
|
36 |
+
pip-delete-this-directory.txt
|
37 |
+
|
38 |
+
# Unit test / coverage reports
|
39 |
+
htmlcov/
|
40 |
+
.tox/
|
41 |
+
.coverage
|
42 |
+
.coverage.*
|
43 |
+
.cache
|
44 |
+
nosetests.xml
|
45 |
+
coverage.xml
|
46 |
+
*,cover
|
47 |
+
.hypothesis/
|
48 |
+
|
49 |
+
# Translations
|
50 |
+
*.mo
|
51 |
+
*.pot
|
52 |
+
|
53 |
+
# Django stuff:
|
54 |
+
*.log
|
55 |
+
|
56 |
+
# Sphinx documentation
|
57 |
+
docs/_build/
|
58 |
+
|
59 |
+
# PyBuilder
|
60 |
+
target/
|
61 |
+
|
62 |
+
#Ipython Notebook
|
63 |
+
.ipynb_checkpoints
|
64 |
+
|
65 |
+
notebooks
|
66 |
+
|
67 |
+
experiments
|
68 |
+
*~
|
69 |
+
|
70 |
+
*.npy
|
71 |
+
*.pt
|
72 |
+
*events.out.tfevents*
|
73 |
+
*.csv
|
74 |
+
|
75 |
+
# PyCharm
|
76 |
+
.idea/
|
77 |
+
|
78 |
+
gh-pages
|
79 |
+
gh-pages.pub
|
80 |
+
|
81 |
+
*.zip
|
82 |
+
.mypy_cache/
|
83 |
+
.vscode/
|
84 |
+
|
85 |
+
**/lightning_logs/**
|
86 |
+
|
87 |
+
# Version Output
|
88 |
+
pyannote/audio/version.py
|
89 |
+
|
90 |
+
# vim
|
91 |
+
.vim
|
packages.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
libsndfile1
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
--extra-index-url https://download.pytorch.org/whl/cu113
|
2 |
+
torch==2.0.1
|
3 |
+
pyannote-audio==3.1.1
|