5789bf99b423e29eb00de204d58e611b069a9c19
reazonspeech/ReazonSpeech\343\201\256\343\202\244\343\203\263\343\202\271\343\203\210\343\203\274\343\203\253\346\226\271\346\263\225.md
... | ... | @@ -19,17 +19,17 @@ $ pip install --upgrade pip setuptools wheel |
19 | 19 | ```bash |
20 | 20 | $ pip install Cython |
21 | 21 | $ git clone https://github.com/reazon-research/ReazonSpeech |
22 | -$ pip install ReazonSpeech/pkg/nemo-asr |
|
22 | +$ pip install ReazonSpeech/pkg/nemo-asr "transformers==4.33.3" "huggingface-hub==0.23.0" "numpy<2.0.0" |
|
23 | 23 | ``` |
24 | 24 | |
25 | -いざ実行すると、`ImportError: cannot import name 'ModelFilter' from 'huggingface_hub'`と怒られてしまう。`huggingface-hub`は`0.23.0`以下でないと動かないようだ。 |
|
25 | +`huggingface-hub`は`0.23.0`以下でないと動かないようだ。 |
|
26 | 26 | 参考: <https://github.com/NVIDIA/NeMo/issues/9793> |
27 | 27 | ```python |
28 | 28 | from huggingface_hub import HfApi, HfFolder, ModelFilter, hf_hub_download |
29 | 29 | ImportError: cannot import name 'ModelFilter' from 'huggingface_hub' (/Users/[省略]/.venv/lib/python3.11/site-packages/huggingface_hub/__init__.py) |
30 | 30 | ``` |
31 | 31 | |
32 | -numpyも2.0.0以下である必要がある。 |
|
32 | +`numpy`も`2.0.0`以下である必要がある。 |
|
33 | 33 | ``` |
34 | 34 | File "/usr/local/reazonspeech/.venv/lib/python3.10/site-packages/nemo/collections/asr/parts/preprocessing/segment.py", line 168, in _convert_samples_to_float32 |
35 | 35 | if samples.dtype in np.sctypes['int']: |
... | ... | @@ -38,10 +38,6 @@ numpyも2.0.0以下である必要がある。 |
38 | 38 | AttributeError: `np.sctypes` was removed in the NumPy 2.0 release. Access dtypes explicitly instead.. Did you mean: 'dtypes'? |
39 | 39 | ``` |
40 | 40 | |
41 | -```bash |
|
42 | -$ pip install "transformers==4.33.3" "huggingface-hub==0.23.0" "numpy<2.0.0" |
|
43 | -``` |
|
44 | - |
|
45 | 41 | 実行は親ディレクトリに移動する必要がある。 |
46 | 42 | ```bash |
47 | 43 | $ pwd |