Muthukamalan commited on
Commit
c7d0edb
·
verified ·
1 Parent(s): 9c1f464

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. dvc.lock +14 -0
  2. requirements.txt +52 -0
dvc.lock ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema: '2.0'
2
+ stages:
3
+ fastrun:
4
+ cmd: make fastrun
5
+ pull:
6
+ cmd: dvc pull
7
+ train:
8
+ cmd: make train
9
+ eval:
10
+ cmd: make eval
11
+ inference:
12
+ cmd: make inference
13
+ test:
14
+ cmd: make test
requirements.txt ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # --------- pytorch --------- #
2
+ timm==1.0.11
3
+ torch==2.5.0
4
+ torchvision==0.20.0
5
+ lightning==2.4.0
6
+ torchmetrics==1.4.1
7
+ tensorboard==2.17.1
8
+ tensorboardX==2.6.2.2
9
+
10
+ # --------- hydra --------- #
11
+ hydra-core==1.2.0
12
+ hydra-colorlog==1.2.0
13
+ # hydra-optuna-sweeper==1.2.0
14
+
15
+ # --------- loggers --------- #
16
+ # wandb
17
+ # neptune-client
18
+ # mlflow
19
+ # comet-ml
20
+
21
+ # --------- others --------- #
22
+ pyrootutils # standardizing the project root setup
23
+ # pre-commit # hooks for applying linters on commit
24
+ rich # beautiful text formatting in terminal
25
+ # pytest # tests
26
+ # sh # for running bash commands in some tests (linux/macos only)
27
+
28
+ # --------- deployment --------- #
29
+ gradio==4.44.1
30
+
31
+ # ---------- pytest ------------- #
32
+ pytest==8.3.3
33
+ pytest-cov==5.0.0
34
+
35
+ kaggle
36
+ rootutils
37
+ loguru
38
+ scikit-image==0.22.0
39
+ scikit-learn==1.3.1
40
+ hydra-optuna-sweeper==1.2.0
41
+ optuna==2.10.1
42
+ hydra-joblib-launcher==1.2.0
43
+ joblib==1.3.2
44
+ dvc==3.55.2
45
+ dvc-data==3.16.6
46
+ dvc-gdrive==3.0.1
47
+ dvc-http==2.32.0
48
+ dvc-objects==5.1.0
49
+ dvc-render==1.0.2
50
+ dvc-s3==3.2.0
51
+ dvc-studio-client==0.21.0
52
+ dvc-task==0.40.1