Instructions to use SnurfyAI/is-even with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SnurfyAI/is-even with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="SnurfyAI/is-even")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("SnurfyAI/is-even") model = AutoModelForSequenceClassification.from_pretrained("SnurfyAI/is-even") - Notebooks
- Google Colab
- Kaggle
File size: 468 Bytes
fff93ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | {
"model_name": "Is Even",
"model_id": "is-even",
"author": "SnurfyAI",
"context_window": 256,
"template_token_budget": 7,
"chatml_tokens": [
"<|im_start|>",
"<|im_end|>",
"user",
"assistant"
],
"vocab": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"true",
"false",
"<|im_start|>",
"<|im_end|>",
"user",
"assistant",
"<pad>"
]
} |