Upload tiny random Llama-3.3 model (seed 42)
Browse files
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
|
| 34 |
|
| 35 |
# Load model and tokenizer
|
| 36 |
-
model =
|
| 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!)
|