-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
59 lines (58 loc) · 1.03 KB
/
environment.yml
File metadata and controls
59 lines (58 loc) · 1.03 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: m5b
channels:
- pytorch
- nvidia
- huggingface
- conda-forge
- fastai
dependencies:
# base
- python>=3.10
- pytorch::pytorch=>2.1
- pytorch::pytorch-cuda=11.8
- pytorch::torchvision
- nvidia::cuda=11.8
- nvidia::cuda-nvcc=11.8
# mandatory libs
- transformers>=4.36.2
- datasets
- peft
- accelerate
- bitsandbytes
- lightning
- ftfy
- sentencepiece
- torchmetrics
- pandas
- wandb
- hydra-core
- hydra-colorlog
- webdataset
- spacy
- spacy-legacy
- pycocoevalcap
- fire
# java required to compute CIDER metric
- openjdk
# deps for img2dataset which we can't install with deps via pip
- scikit-image
- exifread
- albumentations
- fastai::opencv-python-headless
# notebooks
- jupyter
- matplotlib
- pyrootutils
# dev
- pre-commit
- pytest
- debugpy
- ruff
- yapf
- monkeytype
- rich
- pytest-sugar
- git
- pip
# after the environment is created, install pip packages manually via
# pip install --no-cache-dir --no-deps -r requirements.txt