Sadjad Alikhani
commited on
Commit
•
17b29aa
1
Parent(s):
471164f
Update README.md
Browse files
README.md
CHANGED
@@ -61,34 +61,9 @@ conda activate lwm_env
|
|
61 |
Install the necessary packages inside your new environment.
|
62 |
|
63 |
```bash
|
64 |
-
|
65 |
-
|
66 |
-
pip install tqdm deepmimov3
|
67 |
|
68 |
-
# Using Mamba:
|
69 |
-
mamba install pytorch torchvision torchaudio matplotlib pandas -c pytorch
|
70 |
-
pip install tqdm deepmimov3
|
71 |
-
|
72 |
-
```
|
73 |
-
|
74 |
-
> **Note:** The package requirements for the project are as follows:
|
75 |
-
|
76 |
-
```python
|
77 |
-
import torch
|
78 |
-
import torch.nn as nn
|
79 |
-
import torch.nn.functional as F
|
80 |
-
import numpy as np
|
81 |
-
import pandas as pd
|
82 |
-
import DeepMIMOv3
|
83 |
-
import os
|
84 |
-
import pickle
|
85 |
-
import shutil
|
86 |
-
import warnings
|
87 |
-
from tqdm import tqdm
|
88 |
-
from datetime import datetime
|
89 |
-
from torch.utils.data import Dataset, DataLoader
|
90 |
-
import matplotlib.pyplot as plt
|
91 |
-
import time
|
92 |
```
|
93 |
|
94 |
---
|
|
|
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 |
---
|