pglo commited on
Commit
625e567
1 Parent(s): aa35b63

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -14,11 +14,10 @@ Zamba requires you use `transformers` version 4.39.0 or higher:
14
  pip install transformers>=4.39.0
15
  ```
16
 
17
- In order to run optimized Mamba implementations, you first need to install `mamba-ssm` and `causal-conv1d`:
18
  ```bash
19
  pip install mamba-ssm causal-conv1d>=1.2.0
20
  ```
21
- You also have to have the model on a CUDA device.
22
 
23
  You can run the model not using the optimized Mamba kernels, but it is **not** recommended as it will result in significantly higher latency. In order to do that, you'll need to specify `use_mamba_kernels=False` when loading the model.
24
 
 
14
  pip install transformers>=4.39.0
15
  ```
16
 
17
+ In order to run optimized Mamba implementations on a CUDA device, you first need to install `mamba-ssm` and `causal-conv1d`:
18
  ```bash
19
  pip install mamba-ssm causal-conv1d>=1.2.0
20
  ```
 
21
 
22
  You can run the model not using the optimized Mamba kernels, but it is **not** recommended as it will result in significantly higher latency. In order to do that, you'll need to specify `use_mamba_kernels=False` when loading the model.
23