Instructions to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF", dtype="auto") - llama-cpp-python
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF", filename="iSA-03-Mini-3B-Hybrid-Preview.F16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Use Docker
docker model run hf.co/NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
- SGLang
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with Ollama:
ollama run hf.co/NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
- Unsloth Studio
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF 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 NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF 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 NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF to start chatting
- Pi
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Run Hermes
hermes
- Docker Model Runner
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with Docker Model Runner:
docker model run hf.co/NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
- Lemonade
How to use NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF:F16
Run and chat with the model
lemonade run user.iSA-03-Mini-3B-Hybrid-Preview-GGUF-F16
List all available models
lemonade list
๐ Model Preview: NeuraLake iSA-03-Mini-3B (Hybrid)
๐ Overview
The NeuraLake iSA-03-Mini-3B (Hybrid) is an advanced AI model developed by NeuraLake, specifically designed to integrate the best of both worlds: the direct responses from traditional Large Language Models (LLMs) and the ability to perform Auto Multi-Step Reasoning. This Hybrid approach enables the model to generate fluent, contextually rich language while also solving complex, multi-step problems with logical reasoning in a seamless manner.
๐ Future Context Window Expansion: The final context window for this model will be 1M+ tokens, which is currently in internal testing and early stages. It will be released after the conclusion of these phases.
Base Model: Meta's LLaMA-3.2-3B
Training Data: The model's effectiveness stems from tailored high-quality synthetic data and significant base model modifications, enabling it to handle text generation and complex reasoning tasks in a single small model.
๐ Key Features
- 256K Token Window ๐งณ: The model supports an extended 256,000 token context window, designed for multi-step reasoning. This allows it to process long documents, multi-turn conversations, and complex queries while maintaining context, without losing coherence. The extended context window is particularly useful in Retrieval-Augmented Generation (RAG) tasks, especially when the model is fine-tuned for specific domains.
- ๐ง Hybrid Approach: Combines the direct, fluent responses of traditional LLMs with multi-step logical reasoning in a single model, offering the best of both worlds. This makes the model particularly effective at tasks requiring step-by-step analysis alongside fluent text generation.
- ๐ฌ Efficient Despite Size: Despite the larger context window, the model is designed for efficient processing, ensuring that it balances performance with resource usage. It delivers good performance for solving complex problems considering its size.
๐ก Capabilities
- ๐ Natural Language Understanding and Generation: The model can understand and generate natural language text across various domains, providing clear, concise, and coherent responses.
- ๐ง Logical Problem Solving: With its focus on logical reasoning, the model is adept at solving complex problems that require multi-step reasoning, breaking down tasks into manageable components and delivering logical solutions.
- ๐ Extended Context Handling: The 256K token context window allows the model to keep track of long-form content, such as research papers, books, or extended dialogues, without losing critical context. This is particularly useful in RAG tasks, where large amounts of context are needed.
๐ Use Cases
- ๐ป Technical Explanations: Perfect for providing detailed technical explanations, solving challenges, and explaining complex problems with logical steps.
- ๐ Complex Query Processing: Excellent at answering in-depth research questions, summarizing large documents, or engaging in multi-turn conversations with context retention.
โ ๏ธ Limitations
- ๐ฐ๏ธ Training Data: The synthetic training data is highly valuable but may require fine-tuning for niche or specialized domains, especially in highly technical or specialized fields.
- โ๏ธ Performance Variability: Performance may vary for tasks outside the model's training scope unless fine-tuned for those domains.
๐ง Fine-Tuning Recommendation
The model is built on synthetic, high-quality data with heavy modifications, fine-tuning it on real-world, domain-specific data will enhance its performance in specialized tasks. Fine-tuning ensures better accuracy for applications in areas such as legal texts, technical documentation, or scientific research.
๐ก What Makes This Hybrid Model Special?
The Hybrid model uniquely combines the strengths of both traditional LLMs for direct text generation and multi-step reasoning for complex problem-solving. This combination enables the NeuraLake iSA-03-Mini-3B (Hybrid) to handle a wide array of tasks that demand logical analysis and fluent language generation within a single small model.
Simple Question
Complex Situation
๐ Conclusion
The NeuraLake iSA-03-Mini-3B (Hybrid) stands out due to its hybrid nature, allowing it to seamlessly generate natural language responses and solve complex, multi-step problems. Its 256K token context window makes it ideal for working with extended texts or multi-turn conversations. With a foundation in synthetic, high-quality data and a heavily modified base model, the iSA-03-Mini-3B (Hybrid) offers flexibility and high performance for both broad and specialized tasks. Fine-tuning for specific applications will optimize its relevance and accuracy in specialized fields, making it an ideal solution for content generation, technical explanations, and logical problem solving.
โ Frequently Asked Questions (FAQ)
Q1: How does the extended context window benefit text generation tasks? A: The extended context window enables the model to maintain coherence over long passages of text and reasoning, making it highly suitable for tasks that require understanding and generating large documents, such as research papers or books.
Q2: What computational resources are required to run the NeuraLake iSA-03-Mini-3B (Hybrid)? A: Due to the extended context window, running the model efficiently requires substantial computational resources, particularly GPUs with high VRAM. Optimized configurations are recommended for best performance, with 9GB to 12GB of VRAM typically required for effective usage.
Q3: Can the model be fine-tuned on proprietary datasets? A: Yes, the model is designed to be fine-tuned on specific datasets to tailor its performance to particular applications or domains. Add this to your dataset, as the model uses structural tags to guide reasoning:
<User_Prompt>
User prompt
</User_Prompt>
<Reasoning>
The model chain of thought
</Reasoning>
<Answer>
Here is the final answer
</Answer>
NeuraLake will provide a comprehensive guide on how to fine-tune the model, along with a small sample dataset available under the MIT license.
๐ง Usage Example
Python Example (Transformers Library):
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("NeuraLakeAi/iSA-03-Mini-3B")
model = AutoModelForCausalLM.from_pretrained("NeuraLakeAi/iSA-03-Mini-3B")
input_text = "Explain the significance of the extended context window in modern NLP models."
inputs = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**inputs, max_length=500)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
OpenAI Compatible API:
from openai import OpenAI
client = OpenAI(
api_key="any",
base_url="http://localhost:8000/v1"
)
prompt = input("Prompt: ")
completion = client.chat.completions.create(
model="NeuraLakeAi/iSA-03-Mini-3B",
messages=[
{"role": "system", "content": " "},
{"role": "user", "content": prompt}
],
stream=True,
max_tokens = 90000,
)
for chunk in completion:
if chunk.choices[0].delta.content:
print(chunk.choices[0].delta.content, end="", flush=True)
print() # Added a line break to the end of the answer
- Downloads last month
- 30
8-bit
16-bit
32-bit
Model tree for NeuraLakeAi/iSA-03-Mini-3B-Hybrid-Preview-GGUF
Base model
meta-llama/Llama-3.2-3B

