Update README.md
Browse files
README.md
CHANGED
@@ -34,7 +34,11 @@ This checkpoint is a **preview** of the Molmo release. All artifacts used in cre
|
|
34 |
To run Molmo, first install dependencies:
|
35 |
|
36 |
```bash
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
```
|
39 |
|
40 |
Then, follow these steps:
|
@@ -83,8 +87,8 @@ generated_text = processor.tokenizer.decode(generated_tokens, skip_special_token
|
|
83 |
# print the generated text
|
84 |
print(generated_text)
|
85 |
|
86 |
-
# >>> This
|
87 |
-
#
|
88 |
```
|
89 |
|
90 |
## Evaluations
|
|
|
34 |
To run Molmo, first install dependencies:
|
35 |
|
36 |
```bash
|
37 |
+
# uninstall all tensorflow packages
|
38 |
+
pip list --format=freeze | grep '^tensorflow' | cut -d= -f1 | xargs -n1 pip uninstall -y
|
39 |
+
|
40 |
+
# install CPU-only version of tensorflow; used for image preprocessing
|
41 |
+
pip install einops tensorflow-cpu torchvision
|
42 |
```
|
43 |
|
44 |
Then, follow these steps:
|
|
|
87 |
# print the generated text
|
88 |
print(generated_text)
|
89 |
|
90 |
+
# >>> This image features an adorable black Labrador puppy sitting on a wooden deck.
|
91 |
+
# The puppy is positioned in the center of the frame, looking up at the camera...
|
92 |
```
|
93 |
|
94 |
## Evaluations
|