Downloads · 30 days
10
20% of all-time downloads
adaptive-classifier/llm-config-optimizer
llm-config-optimizer is a text classification model from adaptive-classifier. Use it when you need a label for a piece of text. The card lists the license as apache-2.0.
This model is an instance of an adaptive-classifier that allows for continuous learning and dynamic class addition.
Downloads · 30 days
10
20% of all-time downloads
All-time downloads
49
Public
Parameters
892K
7.1 MB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors3.6 MB · 83%
From the Hugging Face model README
This model is an instance of an adaptive-classifier that allows for continuous learning and dynamic class addition.
You can install it with pip install adaptive-classifier.
T0.0_P1.0_PP0.0_FP0.0: 18 examples (30.0%)
T0.7_P1.0_PP0.0_FP0.0: 22 examples (36.7%)
T1.0_P0.1_PP0.0_FP0.0: 1 examples (1.7%)
T1.0_P1.0_PP0.0_FP0.0: 19 examples (31.7%)
from adaptive_classifier import AdaptiveClassifier
# Load the model
classifier = AdaptiveClassifier.from_pretrained("adaptive-classifier/model-name")
# Make predictions
text = "Your text here"
predictions = classifier.predict(text)
print(predictions) # List of (label, confidence) tuples
# Add new examples
texts = ["Example 1", "Example 2"]
labels = ["class1", "class2"]
classifier.add_examples(texts, labels)
This model:
@software{adaptive_classifier,
title = {Adaptive Classifier: Dynamic Text Classification with Continuous Learning},
author = {Sharma, Asankhaya},
year = {2025},
publisher = {GitHub},
url = {https://github.com/codelion/adaptive-classifier}
}