Text Generation
Transformers
Safetensors
GGUF
Korean
English
llama
3b
korean
from-scratch
orpo
instruction-tuned
preference-aligned
fp8
b200
Eval Results (legacy)
text-generation-inference
Instructions to use pathcosmos/frankenstallm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pathcosmos/frankenstallm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="pathcosmos/frankenstallm")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("pathcosmos/frankenstallm") model = AutoModelForCausalLM.from_pretrained("pathcosmos/frankenstallm", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use pathcosmos/frankenstallm 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 pathcosmos/frankenstallm:Q4_K_M # Run inference directly in the terminal: llama cli -hf pathcosmos/frankenstallm:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf pathcosmos/frankenstallm:Q4_K_M # Run inference directly in the terminal: llama cli -hf pathcosmos/frankenstallm:Q4_K_M
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 pathcosmos/frankenstallm:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf pathcosmos/frankenstallm:Q4_K_M
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 pathcosmos/frankenstallm:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf pathcosmos/frankenstallm:Q4_K_M
Use Docker
docker model run hf.co/pathcosmos/frankenstallm:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use pathcosmos/frankenstallm with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "pathcosmos/frankenstallm" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pathcosmos/frankenstallm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/pathcosmos/frankenstallm:Q4_K_M
- SGLang
How to use pathcosmos/frankenstallm 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 "pathcosmos/frankenstallm" \ --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": "pathcosmos/frankenstallm", "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 "pathcosmos/frankenstallm" \ --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": "pathcosmos/frankenstallm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use pathcosmos/frankenstallm with Ollama:
ollama run hf.co/pathcosmos/frankenstallm:Q4_K_M
- Unsloth Studio
How to use pathcosmos/frankenstallm 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 pathcosmos/frankenstallm 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 pathcosmos/frankenstallm to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for pathcosmos/frankenstallm to start chatting
- Docker Model Runner
How to use pathcosmos/frankenstallm with Docker Model Runner:
docker model run hf.co/pathcosmos/frankenstallm:Q4_K_M
- Lemonade
How to use pathcosmos/frankenstallm with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull pathcosmos/frankenstallm:Q4_K_M
Run and chat with the model
lemonade run user.frankenstallm-Q4_K_M
List all available models
lemonade list
- Atomic Chat
| # ============================================================================= | |
| # launch_fp8.sh — 8-GPU FP8 pretraining launcher for B200 | |
| # | |
| # Usage: | |
| # bash scripts/launch_fp8.sh # full run | |
| # bash scripts/launch_fp8.sh --max_steps 500 # quick test | |
| # bash scripts/launch_fp8.sh --resume checkpoints/small_fp8_run1/checkpoint-0001000 | |
| # | |
| # Config is read from configs/small_fp8.yaml (model) + CLI args (train). | |
| # Logs: checkpoints/<RUN_NAME>/train.log | |
| # checkpoints/<RUN_NAME>/tensorboard/ | |
| # ============================================================================= | |
| set -euo pipefail | |
| # ---- Configurable defaults -------------------------------------------------- | |
| RUN_NAME="${RUN_NAME:-small_fp8_run1}" | |
| CONFIG="${CONFIG:-configs/small_fp8.yaml}" | |
| TRAIN_DATA="${TRAIN_DATA:-data/train.bin}" | |
| VAL_DATA="${VAL_DATA:-data/val.bin}" | |
| CKPT_DIR="checkpoints/${RUN_NAME}" | |
| LOG_FILE="${CKPT_DIR}/train.log" | |
| NPROC=8 | |
| MASTER_PORT="${MASTER_PORT:-29500}" | |
| # ---- Defaults that can be overridden via extra CLI args -------------------- | |
| MAX_STEPS=100000 | |
| BATCH_SIZE=8 | |
| GRAD_ACCUM=4 | |
| WARMUP_STEPS=2000 | |
| SEED=42 | |
| # ---- Pass remaining CLI args directly to pretrain.py ---------------------- | |
| EXTRA_ARGS="$@" | |
| # ---- B200 / NVSwitch single-node NCCL tuning -------------------------------- | |
| # Single-node NVSwitch (NV18 full-mesh): disable IB to prevent NCCL probing. | |
| export NCCL_IB_DISABLE=1 | |
| # Use Ring algorithm for large gradient tensors (128M-70B model range). | |
| export NCCL_ALGO=Ring | |
| # Simple protocol is optimal for NVLink bulk transfers (vs LL/LL128 for IB). | |
| export NCCL_PROTO=Simple | |
| # More channels → better NVSwitch saturation for large all-reduce payloads. | |
| export NCCL_MIN_NCHANNELS=16 | |
| export NCCL_MAX_NCHANNELS=16 | |
| # Larger NCCL buffer (64 MB) reduces ring synchronisation overhead. | |
| export NCCL_BUFFSIZE=67108864 | |
| # CPU thread limits (72 cores ÷ 8 ranks = 9; use 4 for DataLoader headroom). | |
| export OMP_NUM_THREADS=4 | |
| export MKL_NUM_THREADS=4 | |
| # ---- Setup ------------------------------------------------------------------ | |
| mkdir -p "${CKPT_DIR}" | |
| cd "$(dirname "$0")/.." # always run from project root | |
| echo "==================================================================" | |
| echo " Run name : ${RUN_NAME}" | |
| echo " Config : ${CONFIG}" | |
| echo " CKPT dir : ${CKPT_DIR}" | |
| echo " Log file : ${LOG_FILE}" | |
| echo " Started : $(date)" | |
| echo "==================================================================" | |
| # Suppress the harmless flash_attn kernel override warning from all ranks. | |
| export PYTHONWARNINGS="ignore::UserWarning:torch.library" | |
| torchrun \ | |
| --nproc_per_node=${NPROC} \ | |
| --master_port=${MASTER_PORT} \ | |
| train/pretrain.py \ | |
| --config "${CONFIG}" \ | |
| --train_data "${TRAIN_DATA}" \ | |
| --val_data "${VAL_DATA}" \ | |
| --checkpoint_dir "${CKPT_DIR}" \ | |
| --log_file "${LOG_FILE}" \ | |
| --max_steps ${MAX_STEPS} \ | |
| --batch_size ${BATCH_SIZE} \ | |
| --grad_accum ${GRAD_ACCUM} \ | |
| --warmup_steps ${WARMUP_STEPS} \ | |
| --seed ${SEED} \ | |
| ${EXTRA_ARGS} \ | |
| 2>&1 | grep -v "UserWarning" \ | |
| | grep -v "Warning only once" \ | |
| | grep -v "Overriding a previously" \ | |
| | grep -v "dispatch key:" \ | |
| | grep -v "previous kernel:" \ | |
| | grep -v "new kernel:" \ | |
| | grep -v "operator: flash_attn" \ | |
| | grep -v "registered at /usr/local" \ | |
| | grep -v "self.m.impl" | |
| echo "==================================================================" | |
| echo " Done : $(date)" | |
| echo "==================================================================" | |