Text Generation
Transformers
PyTorch
llama
biology
chatgpt
vicuna
tutorbot
conversation
text-generation-inference
Instructions to use luffycodes/tutorbot-spock-bio-llama-diff with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use luffycodes/tutorbot-spock-bio-llama-diff with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="luffycodes/tutorbot-spock-bio-llama-diff")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("luffycodes/tutorbot-spock-bio-llama-diff") model = AutoModelForCausalLM.from_pretrained("luffycodes/tutorbot-spock-bio-llama-diff") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use luffycodes/tutorbot-spock-bio-llama-diff with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "luffycodes/tutorbot-spock-bio-llama-diff" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "luffycodes/tutorbot-spock-bio-llama-diff", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/luffycodes/tutorbot-spock-bio-llama-diff
- SGLang
How to use luffycodes/tutorbot-spock-bio-llama-diff 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 "luffycodes/tutorbot-spock-bio-llama-diff" \ --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": "luffycodes/tutorbot-spock-bio-llama-diff", "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 "luffycodes/tutorbot-spock-bio-llama-diff" \ --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": "luffycodes/tutorbot-spock-bio-llama-diff", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use luffycodes/tutorbot-spock-bio-llama-diff with Docker Model Runner:
docker model run hf.co/luffycodes/tutorbot-spock-bio-llama-diff
Commit ·
7e51eb2
1
Parent(s): 6e2f7e2
Update README.md
Browse files
README.md
CHANGED
|
@@ -49,14 +49,14 @@ Apache License 2.0
|
|
| 49 |
Shashank Sonkar (ss164@rice.edu)
|
| 50 |
|
| 51 |
If you use this work, please cite:
|
| 52 |
-
|
| 53 |
-
https://arxiv.org/abs/2305.
|
| 54 |
```
|
| 55 |
-
@misc{
|
| 56 |
-
title={
|
| 57 |
-
author={Shashank Sonkar and Richard G. Baraniuk},
|
| 58 |
year={2023},
|
| 59 |
-
eprint={2305.
|
| 60 |
archivePrefix={arXiv},
|
| 61 |
primaryClass={cs.CL}
|
| 62 |
}
|
|
|
|
| 49 |
Shashank Sonkar (ss164@rice.edu)
|
| 50 |
|
| 51 |
If you use this work, please cite:
|
| 52 |
+
CLASS Meet SPOCK: An Education Tutoring Chatbot based on Learning Science Principles
|
| 53 |
+
https://arxiv.org/abs/2305.13272
|
| 54 |
```
|
| 55 |
+
@misc{sonkar2023class,
|
| 56 |
+
title={CLASS Meet SPOCK: An Education Tutoring Chatbot based on Learning Science Principles},
|
| 57 |
+
author={Shashank Sonkar and Lucy Liu and Debshila Basu Mallick and Richard G. Baraniuk},
|
| 58 |
year={2023},
|
| 59 |
+
eprint={2305.13272},
|
| 60 |
archivePrefix={arXiv},
|
| 61 |
primaryClass={cs.CL}
|
| 62 |
}
|