Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .ci/docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ pytorch_sphinx_theme2==0.2.0
# Tutorial dependencies
tqdm==4.66.1
numpy==1.24.4
pydantic>=2.0
fastapi
matplotlib
librosa
torch==2.9
Expand All @@ -31,8 +33,8 @@ PyHamcrest
bs4
awscliv2==2.1.1
flask
spacy==3.4.1
ray[tune]==2.7.2
spacy>=3.7.0
ray[serve,tune]==2.52.1
tensorboard
jinja2==3.1.3
pytorch-lightning
Expand All @@ -59,6 +61,7 @@ sphinxcontrib.katex
boto3
pandas
requests
aiohttp
scikit-image
scipy==1.11.1
numba==0.57.1
Expand Down
22 changes: 20 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ prototype
/unstable
sg_execution_times.rst

#data things
# Datasets
_data/
data/
advanced_source/images/
advanced_source/data/
beginner_source/.data/
Expand Down Expand Up @@ -52,6 +53,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
.git
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needed due to a bug in Ray; working on a PR

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


# PyInstaller
# Usually these files are written by a python script from a template
Expand Down Expand Up @@ -105,9 +107,11 @@ target/
celerybeat-schedule
# dotenv
.env
.envrc

# virtualenv
venv/
.venv/
ENV/

# Spyder project settings
Expand All @@ -124,11 +128,25 @@ cleanup.sh
# PyTorch things
*.pt

# VSCode
# IDEs
*.vscode
.cursor
.devtools/

# pyspelling
dictionary.dic

# linters
/.lintbin

# Intermediate tutorial files
beginner_source/*/*_tutorial.md
beginner_source/*/*_tutorial.ipynb
intermediate_source/*/*_tutorial.md
intermediate_source/*/*_tutorial.ipynb
advanced_source/*/*_tutorial.md
advanced_source/*/*_tutorial.ipynb
recipes_source/*/*_tutorial.md
recipes_source/*/*_tutorial.ipynb
prototype_source/*/*_tutorial.md
prototype_source/*/*_tutorial.ipynb
Loading