https://github.com/explosion/thinc
Raw File
Tip revision: 3aae298d32adc167ac57e0791a5a8c0544b1e8a5 authored by Daniƫl de Kok on 07 February 2024, 15:14:19 UTC
Set version to v8.2.3 (#922)
Tip revision: 3aae298
.gitignore
# File extensions
*.pdf
*.aux
*.orig
*.pyo
*.pickle
*.dvi
*.o
*.sqlite
.*.s*
*.dat

# Varia
_paths.py
.mypy_cache
.hypothesis/
version.cc
version.pl

# Tests
tests/model/*
tests/model/

# Website
website/.cache/
website/public/
website/node_modules
website/.npm
website/logs
*.log
npm-debug.log*
website/www/
website/_deploy.sh
*.html

# Cython / C extensions
cythonize.json
*.cpp
*.so
*.so.1

# Vim / VSCode / editors
*.swp
*.swo
*.sw*
Profile.prof
.vscode
.sass-cache

# Python
.Python
.python-version
__pycache__/
.pytest_cache
*.py[cod]
.env/
.env*
.~env/
.venv
env3.*/
venv/
.dev
.denv
.pypyenv
.pytest_cache/

# Distribution / packaging
env/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
pip-wheel-metadata/
Pipfile.lock
.installed.cfg
*.egg
.eggs
MANIFEST

# Temporary files
*.~*
tmp/
predict
train

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

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

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

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Windows
*.bat
Thumbs.db
Desktop.ini

# Mac OS X
*.DS_Store

# Komodo project files
*.komodoproject

# Other
*.tgz

# Pycharm project files
*.idea

# IPython
.ipynb_checkpoints/
back to top