Muennighoff commited on
Commit
11742a6
2 Parent(s): 9867b99 32becce

Merge branch 'main' of https://huggingface.co/allenai/MolmoE-1B-0924 into main

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -42,7 +42,11 @@ This checkpoint is a **preview** of the Molmo release. All artifacts used in cre
42
  To run MolmoE, first install dependencies:
43
 
44
  ```bash
45
- pip install einops tensorflow torchvision
 
 
 
 
46
  ```
47
 
48
  Then, follow these steps:
 
42
  To run MolmoE, first install dependencies:
43
 
44
  ```bash
45
+ # uninstall all tensorflow packages
46
+ pip list --format=freeze | grep '^tensorflow' | cut -d= -f1 | xargs -n1 pip uninstall -y
47
+
48
+ # install CPU-only version of tensorflow; used for image preprocessing
49
+ pip install einops tensorflow-cpu torchvision
50
  ```
51
 
52
  Then, follow these steps: