CoolFace
Apppublic

diffusers/optimized-diffusers-code

sourceHugging Faceupdated 1y agoView on Hugging Face
5likes
.gitignore196 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[cod]4*$py.class5 6# C extensions7*.so8 9__pycache__/10# Distribution / packaging11.Python12build/13develop-eggs/14dist/15downloads/16eggs/17.eggs/18lib/19lib64/20parts/21sdist/22var/23wheels/24share/python-wheels/25*.egg-info/26.installed.cfg27*.egg28MANIFEST29 30# PyInstaller31#  Usually these files are written by a python script from a template32#  before PyInstaller builds the exe, so as to inject date/other infos into it.33*.manifest34*.spec35 36# Installer logs37pip-log.txt38pip-delete-this-directory.txt39 40# Unit test / coverage reports41htmlcov/42.tox/43.nox/44.coverage45.coverage.*46.cache47nosetests.xml48coverage.xml49*.cover50*.py,cover51.hypothesis/52.pytest_cache/53cover/54 55# Translations56*.mo57*.pot58 59# Django stuff:60*.log61local_settings.py62db.sqlite363db.sqlite3-journal64 65# Flask stuff:66instance/67.webassets-cache68 69# Scrapy stuff:70.scrapy71 72# Sphinx documentation73docs/_build/74 75# PyBuilder76.pybuilder/77target/78 79# Jupyter Notebook80.ipynb_checkpoints81 82# IPython83profile_default/84ipython_config.py85 86# pyenv87#   For a library or package, you might want to ignore these files since the code is88#   intended to run in multiple environments; otherwise, check them in:89# .python-version90 91# pipenv92#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.93#   However, in case of collaboration, if having platform-specific dependencies or dependencies94#   having no cross-platform support, pipenv may install dependencies that don't work, or not95#   install all needed dependencies.96#Pipfile.lock97 98# UV99#   Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.100#   This is especially recommended for binary packages to ensure reproducibility, and is more101#   commonly ignored for libraries.102#uv.lock103 104# poetry105#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.106#   This is especially recommended for binary packages to ensure reproducibility, and is more107#   commonly ignored for libraries.108#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control109#poetry.lock110 111# pdm112#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.113#pdm.lock114#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it115#   in version control.116#   https://pdm.fming.dev/latest/usage/project/#working-with-version-control117.pdm.toml118.pdm-python119.pdm-build/120 121# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm122__pypackages__/123 124# Celery stuff125celerybeat-schedule126celerybeat.pid127 128# SageMath parsed files129*.sage.py130 131# Environments132.env133.venv134env/135venv/136ENV/137env.bak/138venv.bak/139 140# Spyder project settings141.spyderproject142.spyproject143 144# Rope project settings145.ropeproject146 147# mkdocs documentation148/site149 150# mypy151.mypy_cache/152.dmypy.json153dmypy.json154 155# Pyre type checker156.pyre/157 158# pytype static type analyzer159.pytype/160 161# Cython debug symbols162cython_debug/163 164# PyCharm165#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can166#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore167#  and can be added to the global gitignore or merged into this file.  For a more nuclear168#  option (not recommended) you can uncomment the following to ignore the entire idea folder.169#.idea/170 171# Abstra172# Abstra is an AI-powered process automation framework.173# Ignore directories containing user credentials, local state, and settings.174# Learn more at https://abstra.io/docs175.abstra/176 177# Visual Studio Code178#  Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore 179#  that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore180#  and can be added to the global gitignore or merged into this file. However, if you prefer, 181#  you could uncomment the following to ignore the enitre vscode folder182# .vscode/183 184# Ruff stuff:185.ruff_cache/186 187# PyPI configuration file188.pypirc189 190# Cursor191#  Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to192#  exclude from AI features like autocomplete and code analysis. Recommended for sensitive data193#  refer to https://docs.cursor.com/context/ignore-files194.cursorignore195.cursorindexingignore196