Sadjad Alikhani
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -25,7 +25,7 @@ Once installed, you can use Conda to manage environments.
|
|
25 |
|
26 |
### 2. **Create a New Environment**
|
27 |
|
28 |
-
After installing Conda
|
29 |
|
30 |
#### **Step 1: Create a new environment**
|
31 |
|
@@ -179,9 +179,9 @@ from lwm_model import lwm
|
|
179 |
import torch
|
180 |
|
181 |
preprocessed_chs = tokenizer(
|
182 |
-
selected_scenario_names=selected_scenario_names,
|
183 |
-
manual_data=None,
|
184 |
-
gen_raw=True
|
185 |
)
|
186 |
|
187 |
device = 'cuda' if torch.cuda.is_available() else 'cpu'
|
|
|
25 |
|
26 |
### 2. **Create a New Environment**
|
27 |
|
28 |
+
After installing Conda, follow these steps to create a new environment and install the required packages.
|
29 |
|
30 |
#### **Step 1: Create a new environment**
|
31 |
|
|
|
179 |
import torch
|
180 |
|
181 |
preprocessed_chs = tokenizer(
|
182 |
+
selected_scenario_names=selected_scenario_names, # Selects predefined DeepMIMOv3 scenarios. Set to None to load your own dataset.
|
183 |
+
manual_data=None, # If using a custom dataset, ensure it is a wireless channel dataset of size (N,32,32) based on the settings provided above.
|
184 |
+
gen_raw=True # Set gen_raw=False to apply masked channel modeling (MCM), as used in LWM pre-training. For inference, masking is unnecessary unless you want to evaluate LWM's ability to handle noisy inputs.
|
185 |
)
|
186 |
|
187 |
device = 'cuda' if torch.cuda.is_available() else 'cpu'
|