Downloads · 30 days
8
14% of all-time downloads
darkraise/darkmem-classifier-v1
darkmem-classifier-v1 is a text classification model from darkraise. Use it when you need a label for a piece of text. It is set up for transformers.
Seven-class memory-type classifier for darkmem. Labels: fact, decision, preference, problem, reference, architecture, milestone.
Downloads · 30 days
8
14% of all-time downloads
All-time downloads
58
Public
Parameters
150M
598 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors598 MB · 99%
From the Hugging Face model README
Seven-class memory-type classifier for darkmem. Labels: fact, decision, preference, problem, reference, architecture, milestone.
accuracy 0.975 / macro F1 0.975 on 1,000-row gold (gold_v3.jsonl).
from transformers import AutoModelForSequenceClassification, AutoTokenizer
tok = AutoTokenizer.from_pretrained("darkraise/darkmem-classifier-v1", trust_remote_code=True)
model = AutoModelForSequenceClassification.from_pretrained("darkraise/darkmem-classifier-v1", trust_remote_code=True)
Inherits the license of the base model. Fine-tuned weights published under the same terms unless noted otherwise in the repo.
Fine-tuned as part of darkmem — a centralized memory
system for AI agents. Training recipe and evaluation scripts are in the
fine-tuning/ subtree of the darkmem repository.