forked from just-eoghan/journeycv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
33 lines (29 loc) · 953 Bytes
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# --------- pytorch --------- #
torch>=1.10.0
torchvision>=0.11.0
pytorch-lightning>=1.5.0
torchmetrics>=0.6.0
lightning-bolts
# --------- hydra --------- #
hydra-core==1.1.0
hydra-colorlog==1.1.0
hydra-optuna-sweeper==1.1.0
# --------- loggers --------- #
wandb==0.12.10
# --------- linters --------- #
pre-commit # hooks for applying linters on commit
black # code formatting
isort # import sorting
flake8 # code analysis
# --------- others --------- #
python-dotenv # loading env variables from .env file
rich # beautiful text formatting in terminal
pytest # tests
sh # for running bash commands in some tests
scikit-learn # used in some callbacks
seaborn # used in some callbacks
jupyterlab # better jupyter notebooks
pudb # debugger
albumentations # image transforms
whos-there # get a notification when your training is complete
numpy==1.17.5