Instructions to use olaughter/rockpaperanything with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use olaughter/rockpaperanything with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="olaughter/rockpaperanything", filename="models/rpa-v1.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use olaughter/rockpaperanything with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf olaughter/rockpaperanything # Run inference directly in the terminal: llama-cli -hf olaughter/rockpaperanything
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf olaughter/rockpaperanything # Run inference directly in the terminal: llama-cli -hf olaughter/rockpaperanything
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 olaughter/rockpaperanything # Run inference directly in the terminal: ./llama-cli -hf olaughter/rockpaperanything
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 olaughter/rockpaperanything # Run inference directly in the terminal: ./build/bin/llama-cli -hf olaughter/rockpaperanything
Use Docker
docker model run hf.co/olaughter/rockpaperanything
- LM Studio
- Jan
- Ollama
How to use olaughter/rockpaperanything with Ollama:
ollama run hf.co/olaughter/rockpaperanything
- Unsloth Studio new
How to use olaughter/rockpaperanything 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 olaughter/rockpaperanything 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 olaughter/rockpaperanything to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for olaughter/rockpaperanything to start chatting
- Docker Model Runner
How to use olaughter/rockpaperanything with Docker Model Runner:
docker model run hf.co/olaughter/rockpaperanything
- Lemonade
How to use olaughter/rockpaperanything with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull olaughter/rockpaperanything
Run and chat with the model
lemonade run user.rockpaperanything-{{QUANT_TAG}}List all available models
lemonade list
Rock Paper Anything
A series of fine-tuned small models for an open ended version of the classic game. Premise suggested by an 8 year old.
The goal has been to have a model small enough to play the game offline or in a browser and on low end machines. Each version was fine-tuned using QLoRA via Unsloth, meaning only ~1% of the model's parameters were trained, with the rest frozen. The adapter was then merged back into the base weights and quantized to Q4_K_M GGUF format.
Usage
Ollama
ollama create rockpaperanything -f Modelfile
ollama run rockpaperanything '["caterpillar", "halitosis"]'
{"winner": "caterpillar", "loser": "halitosis", "reason": "The caterpillar's transformation from gnat food to butterfly beauty defies even the most persistent bad breath."}
Input / output
Input is best done as a JSON array of two items:
["arcade fire", "pie"]
Output is JSON:
{
"winner": "arcade fire",
"loser": "pie",
"reason": "The Arcade Fire's infectious energy fills the entire venue, making even a pie feel like it needs to dance."
}
Models
- v1: from Llama-3.2 3B โ 1,500 examples (2.02gb as gguf)
- v2: from Llama-3.2 3B โ 2,200 examples (2.02gb as gguf)
- v3: from Qwen3.5 2B โ 2,200 examples (1.27gb as gguf; 1.08gb as mlc)
- v4: from Qwen3 1.7B โ 2,200 examples (1.11gb as gguf; 0.98gb as mlc))
- Downloads last month
- 667
We're not able to determine the quantization variants.