Enderchef commited on
Commit
a9650bf
·
verified ·
1 Parent(s): d056a55

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -53,18 +53,18 @@ extra_gated_fields:
53
  pipeline_tag: text-generation
54
  ---
55
 
56
- # ICONN i1: The new era of Open-Source CoT in AI
57
  **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.
58
 
59
 
60
  - **Emotional Context Awareness**
61
- ICONN 1 interprets emotional cues and adjusts tone, vocabulary, and response style—offering a more human-like, emotionally reactive experience.
62
 
63
  - ** ICONN Emotional Core (IEC) (Notice: Not available on Huggingface)**
64
  Powered by millions of small AI agents, IEC gives ICONN its emotional personality, with billions of simulated emotional states and detections.
65
 
66
  - **Reasoning**
67
- ICONN i1 is one of the most powerful reasoning open-source models, and most closed-source models in or out of Huggingface.
68
 
69
 
70
 
@@ -79,7 +79,7 @@ pipeline_tag: text-generation
79
 
80
  ## ICONN i1 MoE and Experts
81
 
82
- ICONN i1, being a MoE just like it's base model ICONN 1, has multiple expert models. Keywords are taken from the user's input to choose which expert generates the output.
83
  | Expert Chosen | User Input |
84
  |---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
85
  | ICONN-e1 | `'Hi!'` |
@@ -109,7 +109,7 @@ ICONN's coding specialist, trained for programming, compiler theory, software ar
109
  from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
110
  import torch
111
 
112
- def run_iconn_chatbot(model_name="ICONNAI/ICONN-i1"):
113
 
114
  tokenizer = AutoTokenizer.from_pretrained(model_name)
115
  model = AutoModelForCausalLM.from_pretrained(model_name)
 
53
  pipeline_tag: text-generation
54
  ---
55
 
56
+ # ICONN e1: The new era of Open-Source CoT in AI
57
  **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.
58
 
59
 
60
  - **Emotional Context Awareness**
61
+ ICONN e1 interprets emotional cues and adjusts tone, vocabulary, and response style—offering a more human-like, emotionally reactive experience.
62
 
63
  - ** ICONN Emotional Core (IEC) (Notice: Not available on Huggingface)**
64
  Powered by millions of small AI agents, IEC gives ICONN its emotional personality, with billions of simulated emotional states and detections.
65
 
66
  - **Reasoning**
67
+ ICONN e1 is one of the most powerful reasoning open-source models, and most closed-source models in or out of Huggingface.
68
 
69
 
70
 
 
79
 
80
  ## ICONN i1 MoE and Experts
81
 
82
+ ICONN e1, being a MoE just like it's base model ICONN 1, has multiple expert models. Keywords are taken from the user's input to choose which expert generates the output.
83
  | Expert Chosen | User Input |
84
  |---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
85
  | ICONN-e1 | `'Hi!'` |
 
109
  from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
110
  import torch
111
 
112
+ def run_iconn_chatbot(model_name="ICONNAI/ICONN-e1"):
113
 
114
  tokenizer = AutoTokenizer.from_pretrained(model_name)
115
  model = AutoModelForCausalLM.from_pretrained(model_name)