Instructions to use Corianas/111m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Corianas/111m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Corianas/111m")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Corianas/111m") model = AutoModelForCausalLM.from_pretrained("Corianas/111m") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Corianas/111m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Corianas/111m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Corianas/111m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Corianas/111m
- SGLang
How to use Corianas/111m 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 "Corianas/111m" \ --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": "Corianas/111m", "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 "Corianas/111m" \ --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": "Corianas/111m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Corianas/111m with Docker Model Runner:
docker model run hf.co/Corianas/111m
- Model Card for Cerebras 111M Dollyfied.
- Model Details
- Uses
- Bias, Risks, and Limitations
- How to Get Started with the Model
- Training Details
- Evaluation
- Model Examination [optional]
- Environmental Impact
- Technical Specifications [optional]
- Citation [optional]
- Glossary [optional]
- More Information [optional]
- Model Card Authors [optional]
- Model Card Contact
- Open LLM Leaderboard Evaluation Results
Model Card for Cerebras 111M Dollyfied.
This is a finetuned model of Cerebras 111M model. using DataBricksLabs Dolly Framework
Model Details
Model Description
This is a finetuned version of cerebras' 111million paramater model that has been trained to follow instructions.
It was accomplished using DataBricks Dolly training tools and the alpaca dataset, and was trained for 2 epochs.
- Developed by: Finetuned by Corianas (me) using open source tools
- Shared by [optional]: [More Information Needed]
- Model type: [More Information Needed]
- Language(s) (NLP): EN
- License: cc-by-nc-4.0
- Finetuned from model: https://huggingface.co/cerebras/Cerebras-GPT-111m
- Finetuned using: https://www.databricks.com/blog/2023/03/24/hello-dolly-democratizing-magic-chatgpt-open-models.html
Uses
This is a simple GPT chatbot that has been finetuned to understand instructions. Its knowledge about facts about the world is should be considered suspect at best.
Direct Use
If you have a use you put it to, Please let me know.
[More Information Needed]
Downstream Use [optional]
[More Information Needed]
Out-of-Scope Use
Any form of use where any form of accuracy is needed. FOR THE LOVE OF GOD DO NOT FOLLOW MEDICAL ADVICE FROM THIS. or financial advice.
[More Information Needed]
Bias, Risks, and Limitations
Limitations... Yes, I am sure there are so so many.
[More Information Needed]
How to Get Started with the Model
Use the code below to get started with the model.
[More Information Needed]
Training Details
Training Data
[More Information Needed]
Training Procedure
Preprocessing [optional]
[More Information Needed]
Training Hyperparameters
- Training regime: [More Information Needed]
Speeds, Sizes, Times [optional]
[More Information Needed]
Evaluation
Testing Data, Factors & Metrics
Testing Data
[More Information Needed]
Factors
[More Information Needed]
Metrics
[More Information Needed]
Results
[More Information Needed]
Summary
Model Examination [optional]
[More Information Needed]
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type: 8xA100s (accomplished while I was downloading the model I was actually training.)
- Minutes used: 7.5
- Cloud Provider: LambdaGPU
- Compute Region: USA
- Carbon Emitted: [More Information Needed]
Technical Specifications [optional]
Model Architecture and Objective
[More Information Needed]
Compute Infrastructure
[More Information Needed]
Hardware
[More Information Needed]
Software
[More Information Needed]
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Model Card Authors [optional]
[More Information Needed]
Model Card Contact
[More Information Needed]
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 24.04 |
| ARC (25-shot) | 19.71 |
| HellaSwag (10-shot) | 26.68 |
| MMLU (5-shot) | 25.28 |
| TruthfulQA (0-shot) | 43.72 |
| Winogrande (5-shot) | 50.2 |
| GSM8K (5-shot) | 0.0 |
| DROP (3-shot) | 2.69 |
- Downloads last month
- 1,167
docker model run hf.co/Corianas/111m