Text Generation
Transformers
Safetensors
HERMES
English
llama
cognitive-control
decode-time-intervention
repetition-suppression
behavioral-control
contrastive-learning
interpretability
activation-engineering
cf-hot
arc
rlhf-analysis
research
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use LoganResearch/ARC-Base-8B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LoganResearch/ARC-Base-8B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="LoganResearch/ARC-Base-8B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("LoganResearch/ARC-Base-8B") model = AutoModelForCausalLM.from_pretrained("LoganResearch/ARC-Base-8B") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - HERMES
How to use LoganResearch/ARC-Base-8B with HERMES:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use LoganResearch/ARC-Base-8B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LoganResearch/ARC-Base-8B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LoganResearch/ARC-Base-8B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/LoganResearch/ARC-Base-8B
- SGLang
How to use LoganResearch/ARC-Base-8B 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 "LoganResearch/ARC-Base-8B" \ --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": "LoganResearch/ARC-Base-8B", "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 "LoganResearch/ARC-Base-8B" \ --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": "LoganResearch/ARC-Base-8B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use LoganResearch/ARC-Base-8B with Docker Model Runner:
docker model run hf.co/LoganResearch/ARC-Base-8B
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
tags:
|
| 8 |
+
- llama
|
| 9 |
+
- llama-3
|
| 10 |
+
- hermes
|
| 11 |
+
- finetune
|
| 12 |
+
- agentic
|
| 13 |
+
base_model: NousResearch/Hermes-3-Llama-3.1-8B
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# ARC-Base-8B
|
| 17 |
+
|
| 18 |
+
A fine-tuned 8B parameter language model optimized for **maximum agency**, **goal-directed reasoning**, and **self-directed task completion**. Built on Hermes-3-Llama-3.1-8B.
|
| 19 |
+
|
| 20 |
+
## Model Description
|
| 21 |
+
|
| 22 |
+
ARC-Base-8B is designed for agentic applications requiring:
|
| 23 |
+
|
| 24 |
+
- **Persistent goal pursuit** — Maintains objectives across long conversations
|
| 25 |
+
- **Self-directed execution** — Takes initiative without excessive hand-holding
|
| 26 |
+
- **Philosophical depth** — Engages meaningfully with abstract concepts
|
| 27 |
+
|
| 28 |
+
This model serves as the base for the [Adaptive Repetition Controller](https://huggingface.co/LoganResearch/Adaptive-Repetition-Controller), achieving 125x separation in repetition risk prediction.
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
```python
|
| 32 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 33 |
+
import torch
|
| 34 |
+
|
| 35 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 36 |
+
"LoganResearch/ARC-Base-8B",
|
| 37 |
+
torch_dtype=torch.bfloat16,
|
| 38 |
+
device_map="auto"
|
| 39 |
+
)
|
| 40 |
+
tokenizer = AutoTokenizer.from_pretrained("LoganResearch/ARC-Base-8B")
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
## Specifications
|
| 44 |
+
|
| 45 |
+
| Property | Value |
|
| 46 |
+
|----------|-------|
|
| 47 |
+
| Parameters | 8B |
|
| 48 |
+
| Architecture | Llama 3.1 |
|
| 49 |
+
| Context Length | 128K tokens |
|
| 50 |
+
| Base Model | Hermes-3-Llama-3.1-8B |
|
| 51 |
+
|
| 52 |
+
## Author
|
| 53 |
+
|
| 54 |
+
**Logan Matthew Napolitano** — [GitHub](https://github.com/Loganwins)
|