Update README.md
Browse files
README.md
CHANGED
@@ -27,8 +27,11 @@ This enables low-latency computer automation with local execution.
|
|
27 |
|
28 |
Use the code below to get started with the model.
|
29 |
|
|
|
|
|
30 |
|
31 |
```python
|
|
|
32 |
from PIL import Image
|
33 |
from transformers import AutoProcessor, AutoModelForCausalLM
|
34 |
|
|
|
27 |
|
28 |
Use the code below to get started with the model.
|
29 |
|
30 |
+
*Requirements:* torch, timm, einops, Pillow, transformers
|
31 |
+
|
32 |
|
33 |
```python
|
34 |
+
import torch
|
35 |
from PIL import Image
|
36 |
from transformers import AutoProcessor, AutoModelForCausalLM
|
37 |
|