Instructions to use DrChamyoung/Quinbeta1.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use DrChamyoung/Quinbeta1.1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="DrChamyoung/Quinbeta1.1", filename="QuinBeta1_1.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DrChamyoung/Quinbeta1.1 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf DrChamyoung/Quinbeta1.1 # Run inference directly in the terminal: llama cli -hf DrChamyoung/Quinbeta1.1
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf DrChamyoung/Quinbeta1.1 # Run inference directly in the terminal: llama cli -hf DrChamyoung/Quinbeta1.1
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf DrChamyoung/Quinbeta1.1 # Run inference directly in the terminal: ./llama-cli -hf DrChamyoung/Quinbeta1.1
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf DrChamyoung/Quinbeta1.1 # Run inference directly in the terminal: ./build/bin/llama-cli -hf DrChamyoung/Quinbeta1.1
Use Docker
docker model run hf.co/DrChamyoung/Quinbeta1.1
- LM Studio
- Jan
- Ollama
How to use DrChamyoung/Quinbeta1.1 with Ollama:
ollama run hf.co/DrChamyoung/Quinbeta1.1
- Unsloth Studio
How to use DrChamyoung/Quinbeta1.1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DrChamyoung/Quinbeta1.1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DrChamyoung/Quinbeta1.1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DrChamyoung/Quinbeta1.1 to start chatting
- Atomic Chat new
- Docker Model Runner
How to use DrChamyoung/Quinbeta1.1 with Docker Model Runner:
docker model run hf.co/DrChamyoung/Quinbeta1.1
- Lemonade
How to use DrChamyoung/Quinbeta1.1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DrChamyoung/Quinbeta1.1
Run and chat with the model
lemonade run user.Quinbeta1.1-{{QUANT_TAG}}List all available models
lemonade list
Quin Beta 1.1
Quin Beta 1.1 is an advanced Transformer-based language model with 2.7 billion parameters. It is an extension of Quin Beta 1.1, trained on an enhanced dataset that includes synthetic NLP texts and curated web content. The model demonstrates near state-of-the-art performance in benchmarks for common sense, language understanding, and logical reasoning within its parameter class. Quin Beta 1.1 is designed for QA, chat, and code formats and has a context length of 2048 tokens.
- Key Features
- Parameter Count: 2.7 billion
- Training Data: 250 billion tokens from a combination of AOAI synthetic data and filtered web data
- Training Tokens: 1.4 trillion tokens
- Hardware Used: 96xA100-80G GPUs
- Training Duration: 14 days
- Frameworks: ONNX and JAX
- Reinforcement Learning: Not applied (intended for enabling safety research)
- Applications: QA, chat, and code formats
- Context Length: 2048 tokens
- Open-Source: Yes, aimed at enabling safety research like toxicity reduction and bias understanding
Performance
Quin Beta 1.1 has demonstrated near state-of-the-art performance on various benchmarks, specifically targeting:
- Common sense reasoning
- Language understanding
- Logical reasoning
Usage
Installation
To use Quin Beta 1.1, you will need to have ONNX and JAX installed. Follow the installation instructions for each framework:
ONNX
pip install onnxruntime
JAX
pip install jax jaxlib
Loading the Model
Here is a basic example of how to load and use Quin Beta 1.1 using ONNX:
import onnxruntime as ort
# Load the ONNX model
ort_session = ort.InferenceSession("quin_beta_1.1.onnx")
# Prepare input
input_text = "Your input text here."
inputs = {
"input_ids": [input_text],
}
# Run inference
outputs = ort_session.run(None, inputs)
# Get the result
result = outputs[0]
print(result)
Research and Safety
Quin Beta 1.1 is open-source and designed to enable research in safety domains such as:
- Toxicity reduction
- Bias understanding and mitigation
The model has not undergone reinforcement learning fine-tuning, providing a baseline for safety research efforts.
Contributing Contributions to Quin Beta 1.1 are welcome. If you would like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch (git checkout -b feature-branch).
- Make your changes.
- Commit your changes (git commit -am 'Add new feature').
- Push to the branch (git push origin feature-branch).
- Create a new Pull Request.
License
Quin Beta 1.1 is released under the apache-2.0 License. See the LICENSE file for more details.
Contact
For any questions or issues, please contact drchamyoung@gmail.com
- Downloads last month
- 11
We're not able to determine the quantization variants.