Echo-DSRN
Collection
Dual-State Recurrent Neural Network • 12 items • Updated
How to use ethicalabs/Echo-SmolTools-114M-Intent-CLF-Gen with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ethicalabs/Echo-SmolTools-114M-Intent-CLF-Gen", trust_remote_code=True) # Load model directly
from transformers import AutoModelForSequenceClassification
model = AutoModelForSequenceClassification.from_pretrained("ethicalabs/Echo-SmolTools-114M-Intent-CLF-Gen", trust_remote_code=True, dtype="auto")This is a generative sequence classification model based on the Echo-DSRN architecture.
It was merged from the base model ethicalabs/Echo-DSRN-114M-v0.1.2
and the PEFT adapter ethicalabs/Echo-SmolTools-114M-Intent-PEFT.
No additional linear head is trained — the adapter's generative knowledge is used directly via constrained next-token scoring: for each candidate label the model sums the log-probability of each of its tokens, then picks the highest-scoring one.
EchoForGenerativeClassificationethicalabs/Echo-DSRN-114M-v0.1.2ethicalabs/Echo-SmolTools-114M-Intent-PEFTbfloat16This model requires trust_remote_code=True to load the custom architecture.
import torch
from transformers import AutoTokenizer
from echo_dsrn.modeling_generative_clf import EchoForGenerativeClassification
model_id = "ethicalabs/Echo-SmolTools-114M-Intent-CLF-Gen" # or your hub path
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = EchoForGenerativeClassification.from_pretrained(
model_id,
trust_remote_code=True,
torch_dtype=torch.bfloat16,
device_map="auto",
)
# Single utterance
label, probs = model.classify("Enter your text here", tokenizer)
print(f"Prediction: {label}")
Base model
ethicalabs/Echo-DSRN-114M-v0.1.2-Base