# Created by https://www.gitignore.io/api/python
# Edit at https://www.gitignore.io/?templates=python
#
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# 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

# 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

# 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

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# # Ignore Logs
logs/
*.log


# Sphinx documentation
docs/_build/

# mkdocs documentation
/site

# PyBuilder
target/

# Secrets
.secrets

# Database
*.db
*.rdb

# JetBrains Pycharm
.idea

# VS Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
**/.vscode
# Local History for Visual Studio Code
.history/

# Spyder
.spyderproject
.spyproject/

# IPython
profile_default/
ipython_config.py

# Jupyter Notebook Checkpoints
notebook/.ipynb_checkpoints

# exclude data from source control by default
data/processed
data/interim
data/external
data/raw
src/disconet/wandb
src/disconet/eval_disco_special.py
# models directory
/models/
# test data directory
test/data

# Mac OS-specific storage files
.DS_Store

# Emacs
*~
\#*\#

# Vim
*.swp
*.swo

# Mypy
.mypy_cache/
.dmypy.json
dmypy.json

# DVC
.dvc/config
.dvc/cache
.dvc/tmp
.dvc/plots

# Dempy
.dempy/config
.cache/

# Pyre type checker
.pyre/

# Serialized Model Extensions
# Keras h5 files
*.h5
# Tensorflow Graphs
*.pb
# Onnx files
*.onnx
# TFlite
*.tflite
# Pytorch models
*.pt
# TensorRT models
*.trt
# Tensorflow checkpoints
*.pth
*.ckpt
*.ckpt.*

# Virtual environment
venv
.venv
.venv-docs
.venv-dev
.venv-prod
.venv-note
.venv-dempy

# Hydra
outputs
runs
multirun

# Media files
*.mp3
*.mp4
*.m4a
*.ogg
*.flac
*.acc
*.wav

# pyspark
derby.log
metastore_db
spark-warehouse

# Cruft
.cruft.json

# References
references/

# Instructions
src/README.md

# EOF
