CoolFace
Apppublic

sklearn-docs/mean-shift-clustering

sourceHugging Faceupdated 3y agoView on Hugging Face
2likes
.gitignore125 linesDownload Raw Back to root
1 2.coverage3.coverage.*4.cache5nosetests.xml6coverage.xml7*.cover8*.py,cover9.hypothesis/10.pytest_cache/11cover/12 13# Translations14*.mo15*.pot16 17# Django stuff:18*.log19local_settings.py20db.sqlite321db.sqlite3-journal22 23# Flask stuff:24instance/25.webassets-cache26 27# Scrapy stuff:28.scrapy29 30# Sphinx documentation31docs/_build/32 33# PyBuilder34.pybuilder/35target/36 37# Jupyter Notebook38.ipynb_checkpoints39 40# IPython41profile_default/42ipython_config.py43 44# pyenv45#   For a library or package, you might want to ignore these files since the code is46#   intended to run in multiple environments; otherwise, check them in:47# .python-version48 49# pipenv50#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.51#   However, in case of collaboration, if having platform-specific dependencies or dependencies52#   having no cross-platform support, pipenv may install dependencies that don't work, or not53#   install all needed dependencies.54#Pipfile.lock55 56# poetry57#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.58#   This is especially recommended for binary packages to ensure reproducibility, and is more59#   commonly ignored for libraries.60#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control61#poetry.lock62 63# pdm64#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.65#pdm.lock66#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it67#   in version control.68#   https://pdm.fming.dev/#use-with-ide69.pdm.toml70 71# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm72__pypackages__/73 74# Celery stuff75celerybeat-schedule76celerybeat.pid77 78# SageMath parsed files79*.sage.py80 81# Environments82.env83.venv84env/85venv/86ENV/87env.bak/88venv.bak/89 90# Spyder project settings91.spyderproject92.spyproject93 94# Rope project settings95.ropeproject96 97# mkdocs documentation98/site99 100# mypy101.mypy_cache/102.dmypy.json103dmypy.json104 105# Pyre type checker106.pyre/107 108# pytype static type analyzer109.pytype/110 111# Cython debug symbols112cython_debug/113 114# PyCharm115#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can116#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore117#  and can be added to the global gitignore or merged into this file.  For a more nuclear118#  option (not recommended) you can uncomment the following to ignore the entire idea folder.119#.idea/120 121# VS Code122.vscode/123 124# pycache125__pycache__/