Downloads ยท 30 days
89
4% of all-time downloads
boltuix/NeuroBERT-Mini
NeuroBERT-Mini is a text classification model from boltuix. Use it when you need a label for a piece of text. It is set up for transformers. The card lists the license as mit.
Downloads ยท 30 days
89
4% of all-time downloads
All-time downloads
2.2K
Public
Parameters
9.6M
315 MB on disk
Likes
26
Public
Click a slice to open those files.
.safetensors38.5 MB ยท 98%
From the Hugging Face model README

โก Built for low-latency, lightweight NLP tasks โ perfect for smart assistants, microcontrollers, and embedded apps!

NeuroBERT-Mini is a lightweight NLP model derived from google/bert-base-uncased, optimized for real-time inference on edge and IoT devices. With a quantized size of ~35MB and approximately 10 million parameters, it enables efficient contextual language understanding in resource-constrained environments such as mobile apps, wearables, microcontrollers, and smart home devices.
In addition to its edge-ready design, NeuroBERT-Mini is suitable for a wide range of general-purpose NLP tasks, including text classification, intent detection, semantic similarity, and information extraction. Its compact architecture makes it ideal for offline, privacy-first applications that demand fast, on-device language processing without relying on constant cloud connectivity.
Whether you're building a chatbot, a smart assistant, or an embedded NLP module, NeuroBERT-Mini offers a strong balance of performance and portability for both specialized and mainstream NLP applications.
Install the required dependencies:
pip install transformers torch
Ensure your environment supports Python 3.6+ and has ~35MB of storage for model weights.
git clone https://huggingface.co/boltuix/NeuroBERT-Mini
from transformers import AutoModelForMaskedLM, AutoTokenizer
model = AutoModelForMaskedLM.from_pretrained("boltuix/NeuroBERT-Mini")
tokenizer = AutoTokenizer.from_pretrained("boltuix/NeuroBERT-Mini")
Predict missing words in IoT-related sentences with masked language modeling:
from transformers import pipeline
# Unleash the power
mlm_pipeline = pipeline("fill-mask", model="boltuix/NeuroBERT-Mini")
# Test the magic
result = mlm_pipeline("Please [MASK] the door before leaving.")
print(result[0]["sequence"]) # Output: "Please open the door before leaving."
Perform intent detection or text classification for IoT commands:
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
# ๐ง Load tokenizer and classification model
model_name = "boltuix/NeuroBERT-Mini"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name)
model.eval()
# ๐งช Example input
text = "Turn off the fan"
# โ๏ธ Tokenize the input
inputs = tokenizer(text, return_tensors="pt")
# ๐ Get prediction
with torch.no_grad():
outputs = model(**inputs)
probs = torch.softmax(outputs.logits, dim=1)
pred = torch.argmax(probs, dim=1).item()
# ๐ท๏ธ Define labels
labels = ["OFF", "ON"]
# โ
Print result
print(f"Text: {text}")
print(f"Predicted intent: {labels[pred]} (Confidence: {probs[0][pred]:.4f})")
Output:
Text: Turn off the fan
Predicted intent: OFF (Confidence: 0.5328)
Note: Fine-tune the model for specific classification tasks to improve accuracy.
NeuroBERT-Mini was evaluated on a masked language modeling task using 10 IoT-related sentences. The model predicts the top-5 tokens for each masked word, and a test passes if the expected word is in the top-5 predictions.
| Sentence | Expected Word |
|---|---|
| She is a [MASK] at the local hospital. | nurse |
| Please [MASK] the door before leaving. | shut |
| The drone collects data using onboard [MASK]. | sensors |
| The fan will turn [MASK] when the room is empty. | off |
| Turn [MASK] the coffee machine at 7 AM. | on |
| The hallway light switches on during the [MASK]. | night |
| The air purifier turns on due to poor [MASK] quality. | air |
| The AC will not run if the door is [MASK]. | open |
| Turn off the lights after [MASK] minutes. | five |
| The music pauses when someone [MASK] the room. | enters |
from transformers import AutoTokenizer, AutoModelForMaskedLM
import torch
# ๐ง Load model and tokenizer
model_name = "boltuix/NeuroBERT-Mini"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForMaskedLM.from_pretrained(model_name)
model.eval()
# ๐งช Test data
tests = [
("She is a [MASK] at the local hospital.", "nurse"),
("Please [MASK] the door before leaving.", "shut"),
("The drone collects data using onboard [MASK].", "sensors"),
("The fan will turn [MASK] when the room is empty.", "off"),
("Turn [MASK] the coffee machine at 7 AM.", "on"),
("The hallway light switches on during the [MASK].", "night"),
("The air purifier turns on due to poor [MASK] quality.", "air"),
("The AC will not run if the door is [MASK].", "open"),
("Turn off the lights after [MASK] minutes.", "five"),
("The music pauses when someone [MASK] the room.", "enters")
]
results = []
# ๐ Run tests
for text, answer in tests:
inputs = tokenizer(text, return_tensors="pt")
mask_pos = (inputs.input_ids == tokenizer.mask_token_id).nonzero(as_tuple=True)[1]
with torch.no_grad():
outputs = model(**inputs)
logits = outputs.logits[0, mask_pos, :]
topk = logits.topk(5, dim=1)
top_ids = topk.indices[0]
top_scores = torch.softmax(topk.values, dim=1)[0]
guesses = [(tokenizer.decode([i]).strip().lower(), float(score)) for i, score in zip(top_ids, top_scores)]
results.append({
"sentence": text,
"expected": answer,
"predictions": guesses,
"pass": answer.lower() in [g[0] for g in guesses]
})
# ๐จ๏ธ Print results
for r in results:
status = "โ
PASS" if r["pass"] else "โ FAIL"
print(f"\n๐ {r['sentence']}")
print(f"๐ฏ Expected: {r['expected']}")
print("๐ Top-5 Predictions (word : confidence):")
for word, score in r['predictions']:
print(f" - {word:12} | {score:.4f}")
print(status)
# ๐ Summary
pass_count = sum(r["pass"] for r in results)
print(f"\n๐ฏ Total Passed: {pass_count}/{len(tests)}")
The model performs well in IoT contexts (e.g., โsensors,โ โoff,โ โopenโ) but may require fine-tuning for numerical terms like โfive.โ
| Metric | Value (Approx.) |
|---|---|
| โ Accuracy | ~92โ97% of BERT-base |
| ๐ฏ F1 Score | Balanced for MLM/NER tasks |
| โก Latency | <40ms on Raspberry Pi |
| ๐ Recall | Competitive for lightweight models |
Note: Metrics vary based on hardware (e.g., Raspberry Pi 4, Android devices) and fine-tuning. Test on your target device for accurate results.
NeuroBERT-Mini is designed for edge and IoT scenarios with constrained compute and connectivity. Key applications include:
Quantization ensures efficient memory usage, making it suitable for microcontrollers.
Fine-tuning on domain-specific data is recommended for optimal results.
To adapt NeuroBERT-Mini for custom IoT tasks (e.g., specific smart home commands):
#!pip uninstall -y transformers torch datasets
#!pip install transformers==4.44.2 torch==2.4.1 datasets==3.0.1
import torch
from transformers import BertTokenizer, BertForSequenceClassification, Trainer, TrainingArguments
from datasets import Dataset
import pandas as pd
# 1. Prepare the sample IoT dataset
data = {
"text": [
"Turn on the fan",
"Switch off the light",
"Invalid command",
"Activate the air conditioner",
"Turn off the heater",
"Gibberish input"
],
"label": [1, 1, 0, 1, 1, 0] # 1 for valid IoT commands, 0 for invalid
}
df = pd.DataFrame(data)
dataset = Dataset.from_pandas(df)
# 2. Load tokenizer and model
model_name = "boltuix/NeuroBERT-Mini" # Using NeuroBERT-Mini
tokenizer = BertTokenizer.from_pretrained(model_name)
model = BertForSequenceClassification.from_pretrained(model_name, num_labels=2)
# 3. Tokenize the dataset
def tokenize_function(examples):
return tokenizer(examples["text"], padding="max_length", truncation=True, max_length=64) # Short max_length for IoT commands
tokenized_dataset = dataset.map(tokenize_function, batched=True)
# 4. Set format for PyTorch
tokenized_dataset.set_format("torch", columns=["input_ids", "attention_mask", "label"])
# 5. Define training arguments
training_args = TrainingArguments(
output_dir="./iot_neurobert_results",
num_train_epochs=5, # Increased epochs for small dataset
per_device_train_batch_size=2,
logging_dir="./iot_neurobert_logs",
logging_steps=10,
save_steps=100,
evaluation_strategy="no",
learning_rate=3e-5, # Adjusted for NeuroBERT-Mini
)
# 6. Initialize Trainer
trainer = Trainer(
model=model,
args=training_args,
train_dataset=tokenized_dataset,
)
# 7. Fine-tune the model
trainer.train()
# 8. Save the fine-tuned model
model.save_pretrained("./fine_tuned_neurobert_iot")
tokenizer.save_pretrained("./fine_tuned_neurobert_iot")
# 9. Example inference
text = "Turn on the light"
inputs = tokenizer(text, return_tensors="pt", padding=True, truncation=True, max_length=64)
model.eval()
with torch.no_grad():
outputs = model(**inputs)
logits = outputs.logits
predicted_class = torch.argmax(logits, dim=1).item()
print(f"Predicted class for '{text}': {'Valid IoT Command' if predicted_class == 1 else 'Invalid Command'}")
| Model | Parameters | Size | Edge/IoT Focus | Tasks Supported |
|---|---|---|---|---|
| NeuroBERT-Mini | ~10M | ~35MB | High | MLM, NER, Classification |
| NeuroBERT-Tiny | ~5M | ~15MB | High | MLM, NER, Classification |
| DistilBERT | ~66M | ~200MB | Moderate | MLM, NER, Classification |
| TinyBERT | ~14M | ~50MB | Moderate | MLM, Classification |
NeuroBERT-Mini offers a balance between size and performance, making it ideal for edge devices with slightly more resources than those targeted by NeuroBERT-Tiny.
#NeuroBERT-Mini #edge-nlp #lightweight-models #on-device-ai #offline-nlp
#mobile-ai #intent-recognition #text-classification #ner #transformers
#mini-transformers #embedded-nlp #smart-device-ai #low-latency-models
#ai-for-iot #efficient-bert #nlp2025 #context-aware #edge-ml
#smart-home-ai #contextual-understanding #voice-ai #eco-ai
MIT License: Free to use, modify, and distribute for personal and commercial purposes. See LICENSE for details.
transformers team for model hosting and toolsFor issues, questions, or contributions:
Explore the full details and insights about BERT Mini on Boltuix:
๐ BERT Mini: Lightweight BERT for Edge AI
We welcome community feedback to enhance NeuroBERT-Mini for IoT and edge applications!