Ashwin Kumar
commited on
Commit
·
041f23d
1
Parent(s):
e86470e
updatd readme
Browse files
README.md
CHANGED
@@ -21,13 +21,20 @@ MedVAE is a family of six large-scale, generalizable 2D and 3D variational autoe
|
|
21 |
Note: Model weights and checkpoints are located in the `model_weights` folder.
|
22 |
|
23 |
## ⚡️ Installation
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
```python
|
26 |
git clone https://github.com/StanfordMIMI/MedVAE.git
|
27 |
cd medvae
|
28 |
-
pip install -e .
|
29 |
```
|
30 |
|
|
|
31 |
## 🚀 Usage Instruction
|
32 |
|
33 |
We allow for easy-to-use CLI inference tool for compressing your high-dimensional medical images into usable latents:
|
|
|
21 |
Note: Model weights and checkpoints are located in the `model_weights` folder.
|
22 |
|
23 |
## ⚡️ Installation
|
24 |
+
To install MedVAE, you can simply run:
|
25 |
+
|
26 |
+
```python
|
27 |
+
pip install medvae
|
28 |
+
```
|
29 |
+
|
30 |
+
For an editable installation, use the following commands to clone and install this repository.
|
31 |
```python
|
32 |
git clone https://github.com/StanfordMIMI/MedVAE.git
|
33 |
cd medvae
|
34 |
+
pip install -e .[dev]
|
35 |
```
|
36 |
|
37 |
+
|
38 |
## 🚀 Usage Instruction
|
39 |
|
40 |
We allow for easy-to-use CLI inference tool for compressing your high-dimensional medical images into usable latents:
|