Instructions to use entity2260/pythia-70m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use entity2260/pythia-70m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="entity2260/pythia-70m")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("entity2260/pythia-70m") model = AutoModelForCausalLM.from_pretrained("entity2260/pythia-70m") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use entity2260/pythia-70m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "entity2260/pythia-70m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "entity2260/pythia-70m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/entity2260/pythia-70m
- SGLang
How to use entity2260/pythia-70m with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "entity2260/pythia-70m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "entity2260/pythia-70m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "entity2260/pythia-70m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "entity2260/pythia-70m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use entity2260/pythia-70m with Docker Model Runner:
docker model run hf.co/entity2260/pythia-70m
| license: apache-2.0 | |
| # algebra_linear_1d | |
| --- | |
| language: en | |
| datasets: | |
| - algebra_linear_1d | |
| --- | |
| This is a [t5-small](https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) fine-tuned version on the [math_dataset/algebra_linear_1d](https://www.tensorflow.org/datasets/catalog/math_dataset#mathdatasetalgebra_linear_1d_default_config) for solving **algebra 1d equations** mission. | |
| To load the model: | |
| (necessary packages: !pip install transformers sentencepiece) | |
| ```python | |
| # Load model directly | |
| from transformers import AutoTokenizer, AutoModelForCausalLM | |
| tokenizer = AutoTokenizer.from_pretrained("entity2260/pythia-70m") | |
| model = AutoModelForCausalLM.from_pretrained("entity2260/pythia-70m") | |
| ``` | |
| You can then use this model to solve algebra 1d equations into numbers. | |
| ```python | |
| query = "Solve 0 = 1026*x - 2474 + 46592 for x" | |
| input_text = f"{query} </s>" | |
| features = tokenizer([input_text], return_tensors='pt') | |
| model.to('cuda') | |
| output = model.generate(input_ids=features['input_ids'].cuda(), | |
| attention_mask=features['attention_mask'].cuda()) | |
| tokenizer.decode(output[0]) | |
| # <pad> -41</s> | |
| ``` | |
| Another examples: | |
| + Solve 1112*r + 1418*r - 5220 = 587*r - 28536 for r. | |
| + Answer: -12 Pred: -12 | |
| ---- | |
| + Solve -119*k + 6*k - 117 - 352 = 322 for k. | |
| + Answer: -7 Pred: -7 | |
| ---- | |
| + Solve -547 = -62*t + 437 - 798 for t. | |
| + Answer: 3 Pred: 3 | |
| ---- | |
| + Solve 3*j - 3*j + 0*j - 4802 = 98*j for j. | |
| + Answer: -49 Pred: -49 | |
| ---- | |
| + Solve 3047*n - 6130*n - 1700 = -3049*n for n. | |
| + Answer: -50 Pred: -50 | |
| ---- | |
| + Solve 121*i + 1690 = 76*i - 128*i + 133 for i. | |
| + Answer: -9 Pred: -9 | |