Sadjad Alikhani
commited on
Commit
•
c90e132
1
Parent(s):
17b29aa
Update README.md
Browse files
README.md
CHANGED
@@ -60,10 +60,17 @@ conda activate lwm_env
|
|
60 |
|
61 |
Install the necessary packages inside your new environment.
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
```bash
|
64 |
-
conda install -c conda-forge pytorch numpy pandas matplotlib tqdm
|
65 |
pip install DeepMIMOv3
|
66 |
-
|
67 |
```
|
68 |
|
69 |
---
|
@@ -180,9 +187,8 @@ else:
|
|
180 |
---
|
181 |
|
182 |
### 7. **Tokenize and Load the Model**
|
183 |
-
```
|
184 |
|
185 |
-
python
|
186 |
from input_preprocess import tokenizer
|
187 |
from lwm_model import lwm
|
188 |
import torch
|
|
|
60 |
|
61 |
Install the necessary packages inside your new environment.
|
62 |
|
63 |
+
# Install CUDA-enabled Pytorch
|
64 |
+
```bash
|
65 |
+
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
|
66 |
+
```
|
67 |
+
# Install other required packages from conda-forge
|
68 |
+
```bash
|
69 |
+
conda install python numpy pandas matplotlib tqdm -c conda-forge
|
70 |
+
```
|
71 |
+
# Install DeepMIMOv3 with pip
|
72 |
```bash
|
|
|
73 |
pip install DeepMIMOv3
|
|
|
74 |
```
|
75 |
|
76 |
---
|
|
|
187 |
---
|
188 |
|
189 |
### 7. **Tokenize and Load the Model**
|
|
|
190 |
|
191 |
+
```python
|
192 |
from input_preprocess import tokenizer
|
193 |
from lwm_model import lwm
|
194 |
import torch
|