https://github.com/geomstats/geomstats
Raw File
Tip revision: cadbda232b2667db6bfd851ab7565893fc430e27 authored by Luís F. Pereira on 02 April 2024, 17:19:58 UTC
Merge pull request #1984 from luisfpereira/pre-shape
Tip revision: cadbda2
.gitignore
# Created by https://www.gitignore.io/api/python,jupyternotebooks
# Edit at https://www.gitignore.io/?templates=python,jupyternotebooks

# From running examples and notebooks
checkpoint
initial_weights.hd5.data-00000-of-00001
initial_weights.hd5.index
result.png

### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/

.ipynb_checkpoints
*/.ipynb_checkpoints/*

# IPython
profile_default/
ipython_config.py

# Remove previous ipynb_checkpoints
#   git rm -r .ipynb_checkpoints/

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
/dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# pyenv
.python-version

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Idea folder
.idea/

# VSCode
.vscode/

# Mac
*.DS_Store

# End of https://www.gitignore.io/api/python,jupyternotebooks

# Miscellaneous
out.mp4
examples/out.mp4
notebooks/*.mp4
notebooks/*.png
notebooks/*.svg

# Python virtual environment
venv/

#air speed velocity
.asv/

# pick files
*.pkl


#ignore benchmarks generated timings
benchmarks/*.json
back to top