Text Generation
Transformers
Safetensors
mixtral
emotional-ai
ICONN
chatbot
base
conversational
text-generation-inference
Instructions to use ICONNAI/ICONN-e1-Beta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ICONNAI/ICONN-e1-Beta with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ICONNAI/ICONN-e1-Beta") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ICONNAI/ICONN-e1-Beta") model = AutoModelForCausalLM.from_pretrained("ICONNAI/ICONN-e1-Beta", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ICONNAI/ICONN-e1-Beta with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ICONNAI/ICONN-e1-Beta" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ICONNAI/ICONN-e1-Beta", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ICONNAI/ICONN-e1-Beta
- SGLang
How to use ICONNAI/ICONN-e1-Beta 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 "ICONNAI/ICONN-e1-Beta" \ --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": "ICONNAI/ICONN-e1-Beta", "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 "ICONNAI/ICONN-e1-Beta" \ --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": "ICONNAI/ICONN-e1-Beta", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ICONNAI/ICONN-e1-Beta with Docker Model Runner:
docker model run hf.co/ICONNAI/ICONN-e1-Beta
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,4 @@
|
|
| 1 |
---
|
| 2 |
-
license: other
|
| 3 |
-
license_name: iconn
|
| 4 |
-
license_link: LICENSE
|
| 5 |
library_name: transformers
|
| 6 |
tags:
|
| 7 |
- emotional-ai
|
|
@@ -9,51 +6,44 @@ tags:
|
|
| 9 |
- chatbot
|
| 10 |
- base
|
| 11 |
co2_eq_emissions:
|
| 12 |
-
emissions:
|
| 13 |
source: CodeCarbon
|
| 14 |
training_type: pretraining
|
| 15 |
geographical_location: US-West
|
| 16 |
hardware_used: 18 x B200
|
| 17 |
-
extra_gated_prompt: >
|
| 18 |
-
By accessing or downloading this model, you agree to the ICONN AI License
|
| 19 |
-
Agreement. This includes restrictions on commercial use, redistribution,
|
| 20 |
-
derivative model training, and uploading to public or private repositories.
|
| 21 |
-
You may not use this model to harm, surveil, deceive, exploit, manipulate, or
|
| 22 |
-
conduct unethical AI research. All use must comply with ethical standards and
|
| 23 |
-
respect human dignity.
|
| 24 |
-
extra_gated_fields:
|
| 25 |
-
Full name: text
|
| 26 |
-
Organization (if any): text
|
| 27 |
-
Country: country
|
| 28 |
-
Date of agreement: date_picker
|
| 29 |
-
I am using this model for:
|
| 30 |
-
type: select
|
| 31 |
-
options:
|
| 32 |
-
- Personal use
|
| 33 |
-
- Internal business use
|
| 34 |
-
- Academic research
|
| 35 |
-
- Educational purposes
|
| 36 |
-
- label: Other (explain below)
|
| 37 |
-
value: other
|
| 38 |
-
Purpose explanation (if "Other"): text
|
| 39 |
-
I agree to all terms in the ICONN AI License Agreement, including:
|
| 40 |
-
type: checkbox
|
| 41 |
-
options:
|
| 42 |
-
- >-
|
| 43 |
-
I will NOT use this model for commercial purposes without explicit written
|
| 44 |
-
permission.
|
| 45 |
-
- >-
|
| 46 |
-
I will NOT redistribute, upload, or share this model in any public or
|
| 47 |
-
private repository.
|
| 48 |
-
- I will NOT train new models or derivatives from this model.
|
| 49 |
-
- >-
|
| 50 |
-
I will NOT use this model for unethical, harmful, deceptive, exploitative,
|
| 51 |
-
or surveillance purposes.
|
| 52 |
-
- I understand this license may be revoked if I breach any terms.
|
| 53 |
pipeline_tag: text-generation
|
|
|
|
| 54 |
---
|
| 55 |
|
| 56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
|
| 58 |
**GPU poor? Less than 3x A100s? A e1 Lite model is coming with just 22B parameters alongside a model for consumer CPUs with 14B and 7B parameters.**
|
| 59 |
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
library_name: transformers
|
| 3 |
tags:
|
| 4 |
- emotional-ai
|
|
|
|
| 6 |
- chatbot
|
| 7 |
- base
|
| 8 |
co2_eq_emissions:
|
| 9 |
+
emissions: 3.37
|
| 10 |
source: CodeCarbon
|
| 11 |
training_type: pretraining
|
| 12 |
geographical_location: US-West
|
| 13 |
hardware_used: 18 x B200
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
pipeline_tag: text-generation
|
| 15 |
+
license: apache-2.0
|
| 16 |
---
|
| 17 |
|
| 18 |
+
<div align="center" style="line-height: 1;">
|
| 19 |
+
|
| 20 |
+

|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
<a href="https://huggingface.co/collections/ICONNAI/iconn-1-6851e8a88ed4eb66b4fd0132" target="_blank" style="margin: 2px;">
|
| 24 |
+
<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;" />
|
| 25 |
+
</a>
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
<a href="https://huggingface.co/ICONNAI" target="_blank" style="margin: 2px;">
|
| 29 |
+
<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;" />
|
| 30 |
+
</a>
|
| 31 |
+
|
| 32 |
+
<a href="https://opensource.org/license/apache-2-0" target="_blank" style="margin: 2px;">
|
| 33 |
+
<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;" />
|
| 34 |
+
</a>
|
| 35 |
+
|
| 36 |
+
<a href="https://github.com/organizations/ICONN-AI/" target="_blank" style="margin: 2px;">
|
| 37 |
+
<img alt="ICONN on GitHub" src="https://img.shields.io/badge/🐙_ICONN_on_GitHub-ICONN--AI-8C8CFF?style=flat-square&labelColor=2C3E50" style="display: inline-block; vertical-align: middle;" />
|
| 38 |
+
</a>
|
| 39 |
+
|
| 40 |
+
<a href="https://huggingface.co/ICONNAI" target="_blank" style="margin: 2px;">
|
| 41 |
+
<img alt="Follow ICONNAI" src="https://img.shields.io/badge/⭐_Follow_ICONNAI-HuggingFace-A4BCF0?style=flat-square&labelColor=2C3E50" style="display: inline-block; vertical-align: middle;" />
|
| 42 |
+
</a>
|
| 43 |
+
|
| 44 |
+
</div>
|
| 45 |
+
|
| 46 |
+
# ICONN e1: The new era of Open-Source AI
|
| 47 |
|
| 48 |
**GPU poor? Less than 3x A100s? A e1 Lite model is coming with just 22B parameters alongside a model for consumer CPUs with 14B and 7B parameters.**
|
| 49 |
|