How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf SkunkworksAI/tinyfrank-1.4B:F16
# Run inference directly in the terminal:
llama-cli -hf SkunkworksAI/tinyfrank-1.4B:F16
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf SkunkworksAI/tinyfrank-1.4B:F16
# Run inference directly in the terminal:
llama-cli -hf SkunkworksAI/tinyfrank-1.4B:F16
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 SkunkworksAI/tinyfrank-1.4B:F16
# Run inference directly in the terminal:
./llama-cli -hf SkunkworksAI/tinyfrank-1.4B:F16
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 SkunkworksAI/tinyfrank-1.4B:F16
# Run inference directly in the terminal:
./build/bin/llama-cli -hf SkunkworksAI/tinyfrank-1.4B:F16
Use Docker
docker model run hf.co/SkunkworksAI/tinyfrank-1.4B:F16
Quick Links

Undi95 type frankenstein of TinyLLama 1.1b https://github.com/jzhang38/TinyLlama https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0

GGUF custom quants included

The secret sauce:

slices:
  - sources:
    - model: "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
      layer_range: [0, 14]
  - sources:
    - model: "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
      layer_range: [8, 22]
merge_method: passthrough
dtype: bfloat16

How to run as gguf:

git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make -j
wget https://huggingface.co/SkunkworksAI/tinyfrank-1.4B/resolve/main/tinyfrank-q6L.gguf
./server -m tinyfrank-q6L.gguf --host "my.internal.ip.or.my.cloud.host.name.goes.here.com" -c 512
Downloads last month
448
Safetensors
Model size
1B params
Tensor type
BF16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Spaces using SkunkworksAI/tinyfrank-1.4B 15