Instructions to use gabriellarson/ICONN-1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gabriellarson/ICONN-1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="gabriellarson/ICONN-1-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("gabriellarson/ICONN-1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use gabriellarson/ICONN-1-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf gabriellarson/ICONN-1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf gabriellarson/ICONN-1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf gabriellarson/ICONN-1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf gabriellarson/ICONN-1-GGUF:Q4_K_M
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 gabriellarson/ICONN-1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf gabriellarson/ICONN-1-GGUF:Q4_K_M
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 gabriellarson/ICONN-1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf gabriellarson/ICONN-1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/gabriellarson/ICONN-1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use gabriellarson/ICONN-1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "gabriellarson/ICONN-1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gabriellarson/ICONN-1-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/gabriellarson/ICONN-1-GGUF:Q4_K_M
- SGLang
How to use gabriellarson/ICONN-1-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 "gabriellarson/ICONN-1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gabriellarson/ICONN-1-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "gabriellarson/ICONN-1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gabriellarson/ICONN-1-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use gabriellarson/ICONN-1-GGUF with Ollama:
ollama run hf.co/gabriellarson/ICONN-1-GGUF:Q4_K_M
- Unsloth Studio
How to use gabriellarson/ICONN-1-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 gabriellarson/ICONN-1-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 gabriellarson/ICONN-1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for gabriellarson/ICONN-1-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use gabriellarson/ICONN-1-GGUF with Docker Model Runner:
docker model run hf.co/gabriellarson/ICONN-1-GGUF:Q4_K_M
- Lemonade
How to use gabriellarson/ICONN-1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull gabriellarson/ICONN-1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ICONN-1-GGUF-Q4_K_M
List all available models
lemonade list
Enderchef from ICONN AI
#1
by Enderchef - opened
README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
|
|
|
|
|
|
| 3 |
library_name: transformers
|
| 4 |
tags:
|
| 5 |
- emotional-ai
|
|
@@ -12,96 +14,62 @@ co2_eq_emissions:
|
|
| 12 |
training_type: pretraining
|
| 13 |
geographical_location: US-West
|
| 14 |
hardware_used: 9 x B200
|
| 15 |
-
extra_gated_prompt: >
|
| 16 |
-
By accessing or downloading this model, you agree to the ICONN AI License
|
| 17 |
-
Agreement. This includes restrictions on commercial use, redistribution,
|
| 18 |
-
derivative model training, and uploading to public or private repositories.
|
| 19 |
-
You may not use this model to harm, surveil, deceive, exploit, manipulate, or
|
| 20 |
-
conduct unethical AI research. All use must comply with ethical standards and
|
| 21 |
-
respect human dignity.
|
| 22 |
-
extra_gated_fields:
|
| 23 |
-
Full name: text
|
| 24 |
-
Organization (if any): text
|
| 25 |
-
Country: country
|
| 26 |
-
Date of agreement: date_picker
|
| 27 |
-
I am using this model for:
|
| 28 |
-
type: select
|
| 29 |
-
options:
|
| 30 |
-
- Personal use
|
| 31 |
-
- Internal business use
|
| 32 |
-
- Academic research
|
| 33 |
-
- Educational purposes
|
| 34 |
-
- label: Other (explain below)
|
| 35 |
-
value: other
|
| 36 |
-
Purpose explanation (if "Other"): text
|
| 37 |
-
I agree to all terms in the ICONN AI License Agreement, including:
|
| 38 |
-
type: checkbox
|
| 39 |
-
options:
|
| 40 |
-
- >-
|
| 41 |
-
I will NOT use this model for commercial purposes without explicit written
|
| 42 |
-
permission.
|
| 43 |
-
- >-
|
| 44 |
-
I will NOT redistribute, upload, or share this model in any public or
|
| 45 |
-
private repository.
|
| 46 |
-
- I will NOT train new models or derivatives from this model.
|
| 47 |
-
- >-
|
| 48 |
-
I will NOT use this model for unethical, harmful, deceptive, exploitative,
|
| 49 |
-
or surveillance purposes.
|
| 50 |
-
- I understand this license may be revoked if I breach any terms.
|
| 51 |
pipeline_tag: text-generation
|
| 52 |
-
base_model:
|
| 53 |
-
- ICONNAI/ICONN-1
|
| 54 |
---
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
|
|
|
| 69 |
|
|
|
|
|
|
|
| 70 |
|
|
|
|
| 71 |
|
| 72 |
-
|
| 73 |
|
|
|
|
|
|
|
| 74 |
|
|
|
|
| 75 |
|
|
|
|
| 76 |
|
|
|
|
| 77 |
|
| 78 |
-
##
|
|
|
|
| 79 |
|
| 80 |
-
|
| 81 |
-
| |User Input|Expert Chosen |
|
| 82 |
-
|----------------|-------------------------------|-----------------------------|
|
| 83 |
-
||`'Hi!'` |ICONN-Base |
|
| 84 |
-
| |`What is physics?` |ICONN-e1-Science |
|
| 85 |
-
| |`Explain how to cube a number.`|ICONN-e1|
|
| 86 |
|
| 87 |
-
**
|
|
|
|
|
|
|
| 88 |
|
| 89 |
-
|
| 90 |
|
| 91 |
-
**
|
| 92 |
-
|
| 93 |
-
**ICONN-Writer:** ICONN's base model, fine-tuned on creative writing datasets.
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
# Usage
|
| 97 |
-
**First, make sure you have at least 4x Nvidia A100 or a single B100, and 120GB RAM and 120-192GB VRAM. If you do not have this(which you probably don't), you can chat with ICONN on our huggingface space, consider using our quantatized models, or using [ICONN 0.5 Mini (7-8B)](https://huggingface.co/Enderchef/ICONN-0.5-Mini)**
|
| 98 |
|
| 99 |
> Run the code below to run ICONN 1:
|
| 100 |
|
| 101 |
```python
|
| 102 |
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
| 103 |
import torch
|
|
|
|
| 104 |
def run_iconn_chatbot(model_name="ICONNAI/ICONN-1"):
|
|
|
|
| 105 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 106 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 107 |
|
|
@@ -137,6 +105,7 @@ def run_iconn_chatbot(model_name="ICONNAI/ICONN-1"):
|
|
| 137 |
print(f"Bot: {bot_reply}")
|
| 138 |
|
| 139 |
conversation_history += f" {bot_reply}\n"
|
|
|
|
| 140 |
if __name__ == "__main__":
|
| 141 |
run_iconn_chatbot()
|
| 142 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: iconn
|
| 4 |
+
license_link: LICENSE
|
| 5 |
library_name: transformers
|
| 6 |
tags:
|
| 7 |
- emotional-ai
|
|
|
|
| 14 |
training_type: pretraining
|
| 15 |
geographical_location: US-West
|
| 16 |
hardware_used: 9 x B200
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
pipeline_tag: text-generation
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
+

|
| 20 |
+
<div align="center" style="line-height: 1;">
|
| 21 |
+
<a href="https://huggingface.co/collections/ICONNAI/iconn-1-6851e8a88ed4eb66b4fd0132" target="_blank" style="margin: 2px;">
|
| 22 |
+
<img alt="ICONN 1 Models" src="https://img.shields.io/badge/📦_ICONN_1_Models-HuggingFace-1CBEEF?style=flat-square&labelColor=2C3E50" style="display: inline-block; vertical-align: middle;" />
|
| 23 |
+
</a>
|
| 24 |
+
<a href="https://huggingface.co/spaces/ICONNAI/ICONN-Mini-Chat" target="_blank" style="margin: 2px;">
|
| 25 |
+
<img alt="ICONN 1 Chat" src="https://img.shields.io/badge/💬_ICONN_1_Chat-Online-65C7F9?style=flat-square&labelColor=2C3E50" style="display: inline-block; vertical-align: middle;" />
|
| 26 |
+
</a>
|
| 27 |
+
<a href="https://huggingface.co/ICONNAI" target="_blank" style="margin: 2px;">
|
| 28 |
+
<img alt="ICONN on Hugging Face" src="https://img.shields.io/badge/🤗_ICONN_on_HF-ICONNAI-A4BCF0?style=flat-square&labelColor=2C3E50" style="display: inline-block; vertical-align: middle;" />
|
| 29 |
+
</a>
|
| 30 |
+
<a href="https://opensource.org/license/apache-2-0" target="_blank" style="margin: 2px;">
|
| 31 |
+
<img alt="License Apache 2.0" src="https://img.shields.io/badge/⚖️_License-Apache_2.0-5C63DA?style=flat-square&labelColor=2C3E50" style="display: inline-block; vertical-align: middle;" />
|
| 32 |
+
</a>
|
| 33 |
+
</div>
|
| 34 |
|
| 35 |
+
## ICONN 1
|
| 36 |
+
We proudly introduce **ICONN-1**, the most advanced and human-like open-source artificial intelligence model under 100B parameters of its time. Designed to push the boundaries of natural language understanding and generation, ICONN-1 is built on a **Mixture-of-Experts (MoE)** architecture that enables dynamic routing through specialized expert pathways, allowing for both computational efficiency and enhanced performance.
|
| 37 |
|
| 38 |
+
Developed entirely from scratch, ICONN-1 is based on a customized **Mixtral** framework and comprises **88 billion parameters**, with **22 billion parameters actively utilized per token**. This approach allows ICONN-1 to deliver highly nuanced and contextually accurate responses while maintaining the scalability benefits of sparse activation.
|
| 39 |
|
| 40 |
+
ICONN-1 is released in two distinct forms to serve different application needs:
|
| 41 |
|
| 42 |
+
- **ICONN-1** (this version) is optimized for natural, emotionally resonant, and conversational interactions.
|
| 43 |
+
- **ICONN-e1** is a specialized variant of the model fine-tuned for advanced reasoning, critical analysis, and complex problem-solving.
|
| 44 |
|
| 45 |
+
Together, these models represent a major leap forward in the evolution of AI systems—demonstrating not only deep reasoning but also a commitment to openness, accessibility, and human-aligned intelligence.
|
| 46 |
|
| 47 |
+

|
| 48 |
|
| 49 |
+
_These models were each benchmarked on a collection of 500 questions to compare output to a human for emotion and common sense. Benchmark performance may vary due to the stochastic nature of AI models. ICONN 1 retains the highest human-thinking benchmark score through many tests on different temperatures._
|
| 50 |
|
| 51 |
+
## Usage
|
| 52 |
+
## System Requirements
|
| 53 |
|
| 54 |
+
To run **ICONN 1** effectively, ensure you have:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
+
- **4× NVIDIA A100 GPUs** or a **single NVIDIA B100**
|
| 57 |
+
- **At least 120 GB of system RAM**
|
| 58 |
+
- **120–192 GB of GPU VRAM**
|
| 59 |
|
| 60 |
+
If your system does not meet these requirements—which may be the case for many users—you can still experience ICONN through alternative options:
|
| 61 |
|
| 62 |
+
- Use a **quantized version** of ICONN for lower resource consumption
|
| 63 |
+
- Try the lightweight [**ICONN 1 Mini (7B)**](https://huggingface.co/Enderchef/ICONN-0.5-Mini)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
|
| 65 |
> Run the code below to run ICONN 1:
|
| 66 |
|
| 67 |
```python
|
| 68 |
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
| 69 |
import torch
|
| 70 |
+
|
| 71 |
def run_iconn_chatbot(model_name="ICONNAI/ICONN-1"):
|
| 72 |
+
|
| 73 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 74 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 75 |
|
|
|
|
| 105 |
print(f"Bot: {bot_reply}")
|
| 106 |
|
| 107 |
conversation_history += f" {bot_reply}\n"
|
| 108 |
+
|
| 109 |
if __name__ == "__main__":
|
| 110 |
run_iconn_chatbot()
|
| 111 |
+
```
|