jpgard commited on
Commit
cc60b75
1 Parent(s): f3bb368

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -17,7 +17,15 @@ using the [t4 dataset](https://huggingface.co/datasets/mlfoundations/t4-full).
17
 
18
  # Usage and Examples
19
 
20
- We will add usage examples of the model soon!
 
 
 
 
 
 
 
 
21
 
22
  # License and Terms of Use
23
 
 
17
 
18
  # Usage and Examples
19
 
20
+ You can load the model with `transformers` via
21
+ ```
22
+ from transformers import AutoTokenizer, AutoModelForCausalLM
23
+
24
+ tokenizer = AutoTokenizer.from_pretrained("mlfoundations/tabula-8b")
25
+ model = AutoModelForCausalLM.from_pretrained("mlfoundations/tabula-8b")
26
+ ```
27
+
28
+ For more information on how to prepare data and run inference, see the examples in [rtfm](https://github.com/mlfoundations/rtfm).
29
 
30
  # License and Terms of Use
31