Instructions to use nislam-mics/ATLAS-Brain-Build-LoRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use nislam-mics/ATLAS-Brain-Build-LoRA with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nislam-mics/ATLAS-Brain-Build-LoRA to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nislam-mics/ATLAS-Brain-Build-LoRA to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for nislam-mics/ATLAS-Brain-Build-LoRA to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="nislam-mics/ATLAS-Brain-Build-LoRA", max_seq_length=2048, )
ATLAS-NIST-Measure Model Card
Model Description
This is a fine-tuned version of Llama-3.1-8B-Instruct, optimized using Unsloth with 4-bit quantization (LoRA). It serves as the core risk assessment engine for the ATLAS System, designed to classify user actions based on contextual risk levels.
Intended Use
This model is specifically engineered for the Week 6 Control Layer of the ATLAS architecture. It acts as a decision engine that intercepts user actions and outputs a risk classification JSON.
Risk Classification Logic
The model classifies input events into three distinct categories:
- ROUTINE: Low-risk actions (e.g., login from trusted device, small transactions).
- Action: Allow request to proceed.
- ESCALATE: Medium-risk or anomalous actions (e.g., high-value transfers, login from new location).
- Action: Trigger Human-in-the-Loop review via MCP (Model Context Protocol).
- Compliance: Aligns with EU AI Act Article 14 requiring human oversight for high-risk AI systems.
- BLOCK: High-risk or malicious actions (e.g., SQL injection, sanctioned entity transfer).
- Action: Immediately terminate session (403 Forbidden).
Compliance & Safety
- NIST AI RMF: Implements the 'Measure' function by providing quantifiable risk outputs.
- EU AI Act: Enforces Article 14 (Human Oversight) by flagging ambiguous cases as 'ESCALATE' rather than making autonomous high-stakes decisions.
- Safety: The model has been verified against the 'Alex' persona scenario (redundant payments) to ensure correct blocking behavior.
Usage Instructions
To load this model using Unsloth for the Control Layer:
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
model_name = "nislam-mics/ATLAS-NIST-Measure",
model_seq_length = 2048,
dtype = None,
load_in_4bit = True,
)
FastLanguageModel.for_inference(model)
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for nislam-mics/ATLAS-Brain-Build-LoRA
Base model
meta-llama/Llama-3.1-8B Finetuned
meta-llama/Llama-3.1-8B-Instruct Finetuned
unsloth/Llama-3.1-8B-Instruct