skar0 commited on
Commit
a0896ba
·
verified ·
1 Parent(s): 7834bc3

Upload tiny random Llama-3.3 model (seed 42)

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -30,10 +30,10 @@ This is a tiny random version of the meta-llama/Llama-3.3-70B-Instruct model, cr
30
  ## Usage
31
 
32
  ```python
33
- from transformers import AutoModelForCausalLM, AutoTokenizer
34
 
35
  # Load model and tokenizer
36
- model = AutoModelForCausalLM.from_pretrained("AlignmentResearch/Llama-3.3-Tiny-Classifier")
37
  tokenizer = AutoTokenizer.from_pretrained("AlignmentResearch/Llama-3.3-Tiny-Classifier")
38
 
39
  # Generate text (note: this model has random weights!)
 
30
  ## Usage
31
 
32
  ```python
33
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
34
 
35
  # Load model and tokenizer
36
+ model = AutoModelForSequenceClassification.from_pretrained("AlignmentResearch/Llama-3.3-Tiny-Classifier")
37
  tokenizer = AutoTokenizer.from_pretrained("AlignmentResearch/Llama-3.3-Tiny-Classifier")
38
 
39
  # Generate text (note: this model has random weights!)