Text Generation
Transformers
Safetensors
PEFT
English
archimate
llama3
causal-lm
lora
conversational
Eval Results (legacy)
Instructions to use brkichle/lora-llama3-archimate with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use brkichle/lora-llama3-archimate with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="brkichle/lora-llama3-archimate") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("brkichle/lora-llama3-archimate", device_map="auto") - PEFT
How to use brkichle/lora-llama3-archimate with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use brkichle/lora-llama3-archimate with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "brkichle/lora-llama3-archimate" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "brkichle/lora-llama3-archimate", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/brkichle/lora-llama3-archimate
- SGLang
How to use brkichle/lora-llama3-archimate 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 "brkichle/lora-llama3-archimate" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "brkichle/lora-llama3-archimate", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "brkichle/lora-llama3-archimate" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "brkichle/lora-llama3-archimate", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use brkichle/lora-llama3-archimate with Docker Model Runner:
docker model run hf.co/brkichle/lora-llama3-archimate
Commit History
Upload eval_results.json with huggingface_hub c95393d verified
Upload folder using huggingface_hub 384d7e3 verified
Upload eval_results.json with huggingface_hub a99b061 verified
Upload folder using huggingface_hub 2537670 verified
Update README.md e3e9c73 verified
Update README.md 367baac verified
Updating metadata from 2025-06-05 run d06039f verified
Upload eval_results.json with huggingface_hub 4d21ab4 verified
Upload folder using huggingface_hub 55c2faf verified
Upload eval_results.json with huggingface_hub d953858 verified
Upload folder using huggingface_hub 9bd6bca verified
Upload eval_results.json with huggingface_hub 41a8348 verified
Upload folder using huggingface_hub 9a83dd5 verified
Upload eval_results.json with huggingface_hub 21bdabe verified
Upload folder using huggingface_hub 4ed6ae7 verified
Upload eval_results.json with huggingface_hub 7884613 verified
Upload folder using huggingface_hub ce3723b verified
Upload eval_results.json with huggingface_hub 1feffde verified
Upload folder using huggingface_hub 72d0732 verified
Upload eval_results.json with huggingface_hub 322bbfc verified
Upload folder using huggingface_hub b276392 verified
Upload eval_results.json with huggingface_hub 54579be verified
Upload folder using huggingface_hub 49c6ecb verified
Upload eval_results.json with huggingface_hub aeb1fa6 verified
Upload folder using huggingface_hub 019d8f2 verified
remove old checkpoints fc1e384
Brian Kichler commited on
Upload eval_results.json with huggingface_hub 32237b5 verified
Upload folder using huggingface_hub 19b1a3a verified
Upload folder using huggingface_hub ea4f996 verified
Training in progress, epoch 3 bbb3abf verified
Training in progress, epoch 2 a7c1865 verified
Training in progress, epoch 1 c4fe9a9 verified
Training in progress, epoch 1 c18ef34 verified
Training in progress, epoch 1 be62fcf verified
Training in progress, epoch 1 b6ec9c3 verified
Training in progress, epoch 1 1a37e17 verified
Training in progress, epoch 2 b7eb648 verified
Training in progress, epoch 1 92a5ef7 verified
Training in progress, epoch 1 be13bb9 verified
Training in progress, epoch 2 2606202 verified
Training in progress, epoch 1 b399552 verified
Training in progress, epoch 1 2bfee52 verified
Training in progress, epoch 1 7a0bd1e verified
Training in progress, epoch 1 7be54f1 verified
Add missing import statement for os in handler.py 9c34a0a
Brian Kichler commited on