返回 F5-TTS
.gitignore
根目录 / .gitignore
1 # Customed
2 .vscode/
3 tests/
4 runs/
5 data/
6 ckpts/
7 wandb/
8 results/
9
10 # Byte-compiled / optimized / DLL files
11 __pycache__/
12 *.py[cod]
13 *$py.class
14
15 # C extensions
16 *.so
17
18 # Distribution / packaging
19 .Python
20 build/
21 develop-eggs/
22 dist/
23 downloads/
24 eggs/
25 .eggs/
26 lib/
27 lib64/
28 parts/
29 sdist/
30 var/
31 wheels/
32 share/python-wheels/
33 *.egg-info/
34 .installed.cfg
35 *.egg
36 MANIFEST
37
38 # PyInstaller
39 # Usually these files are written by a python script from a template
40 # before PyInstaller builds the exe, so as to inject date/other infos into it.
41 *.manifest
42 *.spec
43
44 # Installer logs
45 pip-log.txt
46 pip-delete-this-directory.txt
47
48 # Unit test / coverage reports
49 htmlcov/
50 .tox/
51 .nox/
52 .coverage
53 .coverage.*
54 .cache
55 nosetests.xml
56 coverage.xml
57 *.cover
58 *.py,cover
59 .hypothesis/
60 .pytest_cache/
61 cover/
62
63 # Translations
64 *.mo
65 *.pot
66
67 # Django stuff:
68 *.log
69 local_settings.py
70 db.sqlite3
71 db.sqlite3-journal
72
73 # Flask stuff:
74 instance/
75 .webassets-cache
76
77 # Scrapy stuff:
78 .scrapy
79
80 # Sphinx documentation
81 docs/_build/
82
83 # PyBuilder
84 .pybuilder/
85 target/
86
87 # Jupyter Notebook
88 .ipynb_checkpoints
89
90 # IPython
91 profile_default/
92 ipython_config.py
93
94 # pyenv
95 # For a library or package, you might want to ignore these files since the code is
96 # intended to run in multiple environments; otherwise, check them in:
97 # .python-version
98
99 # pipenv
100 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
101 # However, in case of collaboration, if having platform-specific dependencies or dependencies
102 # having no cross-platform support, pipenv may install dependencies that don't work, or not
103 # install all needed dependencies.
104 #Pipfile.lock
105
106 # poetry
107 # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
108 # This is especially recommended for binary packages to ensure reproducibility, and is more
109 # commonly ignored for libraries.
110 # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
111 #poetry.lock
112
113 # pdm
114 # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115 #pdm.lock
116 # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
117 # in version control.
118 # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
119 .pdm.toml
120 .pdm-python
121 .pdm-build/
122
123 # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
124 __pypackages__/
125
126 # Celery stuff
127 celerybeat-schedule
128 celerybeat.pid
129
130 # SageMath parsed files
131 *.sage.py
132
133 # Environments
134 .env
135 .venv
136 env/
137 venv/
138 ENV/
139 env.bak/
140 venv.bak/
141
142 # Spyder project settings
143 .spyderproject
144 .spyproject
145
146 # Rope project settings
147 .ropeproject
148
149 # mkdocs documentation
150 /site
151
152 # mypy
153 .mypy_cache/
154 .dmypy.json
155 dmypy.json
156
157 # Pyre type checker
158 .pyre/
159
160 # pytype static type analyzer
161 .pytype/
162
163 # Cython debug symbols
164 cython_debug/
165
166 # PyCharm
167 # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
168 # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
169 # and can be added to the global gitignore or merged into this file. For a more nuclear
170 # option (not recommended) you can uncomment the following to ignore the entire idea folder.
171 #.idea/
172
172 lines Plain Text