soldni commited on
Commit
45acc4b
1 Parent(s): 6c4eb53

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -3
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
- pip install einops tensorflow torchvision
 
 
 
 
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 photograph captures an adorable black Labrador puppy sitting on a weathered
87
- # wooden deck. The deck's planks, which are a mix of light and dark brown with ...
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