Commit 886889e 1 parent d006fa0 commit 886889e Copy full SHA for 886889e
File tree 5 files changed +54
-22
lines changed
5 files changed +54
-22
lines changed Original file line number Diff line number Diff line change 5
5
* .kenlm filter =lfs diff =lfs merge =lfs - text
6
6
* .arpa filter =lfs diff =lfs merge =lfs - text
7
7
* ubyte filter =lfs diff =lfs merge =lfs - text
8
+ * .ipynb merge =nbdev-merge
Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ recipes/*/logs
133
133
tests /
134
134
.hydra /
135
135
* .png
136
+ * .wav
136
137
* .pt
137
138
* .onnx
138
139
* .ckpt
Original file line number Diff line number Diff line change @@ -19,9 +19,19 @@ you need python \<3.12
19
19
20
20
### Install using Pip
21
21
22
+ Install package:
22
23
``` sh
23
24
pip install slg-nimrod
24
25
```
26
+ Install espeak for LM:
27
+ ``` bash
28
+ brew install espeak # macos
29
+ ```
30
+ Install Spacy english model
31
+ ``` bash
32
+ python -m spacy download en_core_web_sm
33
+ ```
34
+
25
35
26
36
## Usage
27
37
@@ -33,7 +43,9 @@ git lfs install
33
43
# update changes
34
44
git lfs fetch --all
35
45
# copy the actual data
36
- git lfs pull
46
+ git lfs checkout
47
+ # or just
48
+ git lfs pull # combing both steps above into one (like usual git pull)
37
49
```
38
50
39
51
Check recipes in ` recipes/ ` folder. E.g. for a simple digit recognizer
Original file line number Diff line number Diff line change @@ -5,33 +5,42 @@ channels:
5
5
- conda-forge
6
6
- huggingface
7
7
dependencies :
8
+ - anyascii
9
+ - datasets
10
+ - h5py
11
+ - hydra-core
12
+ - inflect
8
13
- jupyterlab
9
14
- matplotlib
10
- - tqdm
11
- - pandas
12
- - datasets
13
- - transformers
14
15
- nbdev
15
- - spacy
16
- - inflect
17
- - anyascii
18
16
- omegaconf
19
- - hydra-core
20
- - wandb
21
17
- onnxruntime
22
- - h5py
18
+ - pandas
19
+ - portalocker
23
20
- pre-commit
24
21
- pytest
22
+ - python-dotenv
25
23
- portalocker
24
+ - spacy
25
+ - streamlit
26
+ - optuna
27
+ - tensorboard
28
+ - transformers
29
+ - tqdm
30
+ - wandb
26
31
- pip :
32
+ - encodec
33
+ - hydra_colorlog
34
+ - hydra-optuna-sweeper
27
35
- jupyterlab-quarto
36
+ - kenlm
37
+ - lightning
38
+ - lhotse
39
+ - plum-dispatch
40
+ - https://github.com/kpu/kenlm/archive/master.zip
41
+ - phonemizer
28
42
- torch
29
43
- torchvision
30
44
- torchtext
45
+ - torchdata
31
46
- torchaudio
32
- - plum-dispatch
33
- - https://github.com/kpu/kenlm/archive/master.zip
34
- - lhotse
35
- - phonemizer
36
- - hydra_colorlog
37
- - lightning
Original file line number Diff line number Diff line change @@ -37,13 +37,22 @@ language = English
37
37
status = 3
38
38
39
39
# ## Optional ###
40
- requirements = torch ==2.0.1 torchvision ==0.15.2 torchtext ==0.15.2 torchdata ==0.6.1 torchaudio ==2.0.2 \
41
- anyascii datasets encodec h5py hydra-core hydra-optuna-sweeper inflect jupyterlab ==4.0.6 \
40
+ ; requirements = torch==2.0.1 torchvision==0.15.2 torchtext==0.15.2 torchdata==0.6.1 torchaudio==2.0.2 \
41
+ ; anyascii datasets encodec h5py hydra-core hydra-optuna-sweeper inflect jupyterlab==4.0.6 \
42
+ ; lightning matplotlib nbdev omegaconf onnxruntime pandas portalocker \
43
+ ; pre-commit python-dotenv pytest spacy==3.6.1 tensorboard tqdm transformers wandb \
44
+ ; hydra_colorlog jupyterlab-quarto kenlm lhotse==1.16.0 plum-dispatch \
45
+ ; phonemizer==3.2.1 streamlit optuna
46
+ ; # https://github.com/kpu/kenlm/archive/master.zip cupy
47
+
48
+ requirements = torch torchvision torchtext torchdata torchaudio \
49
+ anyascii datasets encodec h5py hydra-core hydra-optuna-sweeper inflect jupyterlab \
42
50
lightning matplotlib nbdev omegaconf onnxruntime pandas portalocker \
43
- pre-commit python-dotenv pytest spacy ==3.6.1 tensorboard tqdm transformers wandb \
44
- hydra_colorlog jupyterlab-quarto kenlm lhotse ==1.16.0 plum-dispatch \
45
- phonemizer ==3.2.1 streamlit optuna
51
+ pre-commit python-dotenv pytest spacy tensorboard tqdm transformers wandb \
52
+ hydra_colorlog jupyterlab-quarto kenlm lhotse plum-dispatch \
53
+ phonemizer streamlit optuna
46
54
# https://github.com/kpu/kenlm/archive/master.zip cupy
47
55
56
+
48
57
# dev_requirements =
49
58
# console_scripts =
You can’t perform that action at this time.
0 commit comments