liskasYR commited on
Commit
05adbb1
Β·
verified Β·
1 Parent(s): 95d1bc6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -106
README.md CHANGED
@@ -1,19 +1,15 @@
1
  ---
2
- license: apache-2.0
3
- language:
4
- - en
5
- - he
6
  tags:
7
  - liskCell
8
  - AI
 
 
9
  - deep-learning
10
- - transformer
11
- pipeline_tag: text-generation
12
- library_name: transformers
13
  ---
14
 
15
  <p align="center">
16
- <img src="https://readme-typing-svg.demolab.com?font=Orbitron&weight=700&size=42&duration=1&pause=99999&color=FF0000&center=true&vCenter=true&width=700&height=90&lines=liskCell+AI+Lab" alt="liskCell"/>
17
  </p>
18
 
19
  <p align="center">
@@ -21,140 +17,86 @@ library_name: transformers
21
  </p>
22
 
23
  <p align="center">
24
- <img src="https://readme-typing-svg.demolab.com?font=Fira+Code&size=20&duration=2500&pause=600&color=FF0000&center=true&vCenter=true&width=700&height=45&multiline=false&lines=πŸ”΄+Advanced+AI+Research;🟠+Next-Gen+Language+Models;🟑+Multilingual+Intelligence;🟒+Open+Source+Innovation;πŸ”΅+liskasYR+%40+liskCell;🟣+Pushing+AI+Boundaries" alt="RGB typing animation"/>
25
  </p>
26
 
27
- # 🧠 liskCell Model Card
28
-
29
- > **Developed by:** [liskasYR (Yonatan Yusupov)](https://github.com/liskasYR) Β· **liskCell AI Lab**
30
- > **Organization:** [liskCell](https://huggingface.co/liskCell) β€” An advanced AI research laboratory pushing the boundaries of intelligent systems.
31
-
32
  <p align="center">
33
- <img src="https://img.shields.io/badge/liskCell-AI%20Lab-FF0000?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik0xMiAyTDIgN2wxMCA1IDEwLTV6TTIgMTdsOSA1IDktNXYtN2wtOSA1LTktNXoiLz48L3N2Zz4=" alt="liskCell"/>
34
- <img src="https://img.shields.io/badge/Developer-liskasYR-FF8800?style=for-the-badge&logo=github" alt="liskasYR"/>
35
- <img src="https://img.shields.io/badge/HuggingFace-Model%20Card-FFFF00?style=for-the-badge&logo=huggingface&logoColor=black" alt="HuggingFace"/>
36
- <img src="https://img.shields.io/badge/License-Apache%202.0-00CC44?style=for-the-badge" alt="License"/>
37
  <img src="https://img.shields.io/badge/Lang-EN%20%7C%20HE-0088FF?style=for-the-badge" alt="Language"/>
38
  <img src="https://img.shields.io/badge/Status-Active-AA00FF?style=for-the-badge" alt="Status"/>
39
  </p>
40
 
41
  ---
42
 
43
- ## πŸ“Œ Model Description
44
 
45
- This model was developed at **liskCell**, an AI lab company pioneering next-generation language and multimodal intelligence β€” on par with the world's leading AI research organizations.
46
 
47
- This model card provides metadata, usage instructions, training details, evaluation results, and ethical considerations for the model.
48
 
49
- | Field | Details |
50
- |-------|---------|
51
- | **Model Type** | Large Language Model (LLM) |
52
- | **Developer** | liskasYR @ liskCell |
53
- | **License** | Apache 2.0 |
54
- | **Languages** | English, Hebrew |
55
- | **Architecture** | Transformer-based |
56
- | **Framework** | πŸ€— Transformers |
57
 
58
  ---
59
 
60
- ## πŸš€ Getting Started
61
-
62
- ### Installation
63
-
64
- ```bash
65
- pip install transformers torch
66
- ```
67
-
68
- ### Quick Usage
69
-
70
- ```python
71
- from transformers import AutoTokenizer, AutoModelForCausalLM
72
 
73
- model_id = "liskCell/model-name"
74
-
75
- tokenizer = AutoTokenizer.from_pretrained(model_id)
76
- model = AutoModelForCausalLM.from_pretrained(model_id)
77
-
78
- inputs = tokenizer("Hello, I am liskCell AI:", return_tensors="pt")
79
- outputs = model.generate(**inputs, max_new_tokens=100)
80
-
81
- print(tokenizer.decode(outputs[0], skip_special_tokens=True))
82
- ```
83
 
84
  ---
85
 
86
- ## πŸ‹οΈ Training Details
87
-
88
- ### Training Data
89
-
90
- The model was trained on a curated, high-quality dataset compiled by the **liskCell** research team. The dataset covers diverse domains including science, reasoning, coding, and multilingual content.
91
 
92
- ### Training Procedure
93
-
94
- | Parameter | Value |
95
- |-----------|-------|
96
- | **Optimizer** | AdamW |
97
- | **Learning Rate** | 2e-5 |
98
- | **Batch Size** | 32 |
99
- | **Epochs** | 3 |
100
- | **Hardware** | NVIDIA A100 GPUs |
101
- | **Framework** | PyTorch + πŸ€— Transformers |
102
 
103
  ---
104
 
105
- ## πŸ“Š Evaluation Results
106
-
107
- | Benchmark | Score |
108
- |-----------|-------|
109
- | MMLU | β€” |
110
- | HellaSwag | β€” |
111
- | HumanEval | β€” |
112
- | TruthfulQA | β€” |
113
-
114
- > *Full evaluation results will be published by liskCell upon official release.*
115
-
116
- ---
117
 
118
- ## ⚠️ Limitations & Biases
119
 
120
- - The model may produce incorrect or hallucinated information.
121
- - Performance may vary across languages and domains.
122
- - Not suitable for high-stakes decisions without human review.
123
- - Potential for biases inherited from training data.
 
124
 
125
  ---
126
 
127
- ## πŸ” Ethical Considerations
128
-
129
- **liskCell** is committed to responsible AI development. This model:
130
 
131
- - Was evaluated for harmful content generation
132
- - Follows safety guidelines aligned with international AI ethics standards
133
- - Should **not** be used for misinformation, harm, or illegal activities
 
 
134
 
135
  ---
136
 
137
- ## πŸ“„ Citation
138
-
139
- If you use this model in your research, please cite:
140
 
141
- ```bibtex
142
- @misc{liskcell2026,
143
- author = {Yusupov, Yonatan and liskCell AI Lab},
144
- title = {liskCell Language Model},
145
- year = {2026},
146
- publisher = {Hugging Face},
147
- howpublished = {\url{https://huggingface.co/liskCell}},
148
- }
149
- ```
150
 
151
  ---
152
 
153
- ## πŸ“¬ Contact
154
 
155
- - **Developer:** liskasYR (Yonatan Yusupov)
156
- - **Organization:** liskCell AI Lab
157
- - **HuggingFace:** [@liskCell](https://huggingface.co/liskCell)
158
 
159
  ---
160
 
@@ -163,5 +105,5 @@ If you use this model in your research, please cite:
163
  </p>
164
 
165
  <p align="center">
166
- <img src="https://readme-typing-svg.demolab.com?font=Fira+Code&size=14&duration=2000&pause=800&color=FF6600&center=true&vCenter=true&width=600&height=30&lines=Made+with+%E2%9D%A4%EF%B8%8F+by+liskCell+AI+Lab;Powered+by+liskasYR+%28Yonatan+Yusupov%29;Research+%26+Innovation+%F0%9F%9A%80" alt="Footer animation"/>
167
  </p>
 
1
  ---
 
 
 
 
2
  tags:
3
  - liskCell
4
  - AI
5
+ - research
6
+ - nlp
7
  - deep-learning
8
+ - multilingual
 
 
9
  ---
10
 
11
  <p align="center">
12
+ <img src="https://readme-typing-svg.demolab.com?font=Orbitron&weight=700&size=48&duration=1&pause=99999&color=FFFFFF&center=true&vCenter=true&width=700&height=100&lines=liskCell" alt="liskCell"/>
13
  </p>
14
 
15
  <p align="center">
 
17
  </p>
18
 
19
  <p align="center">
20
+ <img src="https://readme-typing-svg.demolab.com?font=Fira+Code&size=18&duration=2800&pause=700&color=FF0000&center=true&vCenter=true&width=700&height=45&lines=Advanced+AI+Research+Lab;Next-Gen+Language+%26+Multimodal+AI;Open+Source+%7C+Multilingual+%7C+Cutting-Edge;Built+by+liskasYR+%28Yonatan+Yusupov%29" alt="Typing animation"/>
21
  </p>
22
 
 
 
 
 
 
23
  <p align="center">
24
+ <img src="https://img.shields.io/badge/liskCell-Organization-FF0000?style=for-the-badge" alt="liskCell"/>
25
+ <img src="https://img.shields.io/badge/Founded%20by-liskasYR-FF8800?style=for-the-badge&logo=github" alt="Founder"/>
26
+ <img src="https://img.shields.io/badge/Type-AI%20Lab-FFDD00?style=for-the-badge&logoColor=black" alt="Type"/>
27
+ <img src="https://img.shields.io/badge/Focus-LLM%20%7C%20NLP%20%7C%20Multimodal-00CC44?style=for-the-badge" alt="Focus"/>
28
  <img src="https://img.shields.io/badge/Lang-EN%20%7C%20HE-0088FF?style=for-the-badge" alt="Language"/>
29
  <img src="https://img.shields.io/badge/Status-Active-AA00FF?style=for-the-badge" alt="Status"/>
30
  </p>
31
 
32
  ---
33
 
34
+ ## 🏒 About liskCell
35
 
36
+ **liskCell** is an independent AI research laboratory founded by **liskasYR (Yonatan Yusupov)**, dedicated to advancing the frontiers of artificial intelligence β€” on par with the world's leading AI organizations like Google DeepMind, Anthropic, and OpenAI.
37
 
38
+ We build, train, and open-source state-of-the-art language models, multimodal systems, and AI tools, with a strong focus on:
39
 
40
+ - πŸ”¬ **Fundamental AI Research** β€” pushing the theoretical limits of intelligence
41
+ - 🌍 **Multilingual AI** β€” with native support for English, Hebrew, and more
42
+ - 🀝 **Open Source** β€” sharing knowledge and models with the global community
43
+ - πŸš€ **Applied Innovation** β€” turning research into real-world products
 
 
 
 
44
 
45
  ---
46
 
47
+ ## πŸ‘€ Team
 
 
 
 
 
 
 
 
 
 
 
48
 
49
+ | Name | Role | Profile |
50
+ |------|------|---------|
51
+ | **Yonatan Yusupov** | Founder & Lead Researcher | [@liskasYR](https://github.com/liskasYR) |
 
 
 
 
 
 
 
52
 
53
  ---
54
 
55
+ ## πŸ”­ Research Areas
 
 
 
 
56
 
57
+ ```
58
+ 🧠 Large Language Models (LLM) πŸ–ΌοΈ Multimodal AI
59
+ πŸ“ Natural Language Processing 🌐 Multilingual Systems
60
+ πŸ”’ Mathematical Reasoning πŸ’» Code Generation
61
+ πŸ” AI Safety & Alignment ⚑ Efficient Inference
62
+ ```
 
 
 
 
63
 
64
  ---
65
 
66
+ ## πŸ“¦ Featured Models & Datasets
 
 
 
 
 
 
 
 
 
 
 
67
 
68
+ > *Models and datasets will be listed here upon official release by liskCell.*
69
 
70
+ | Name | Type | Description | Status |
71
+ |------|------|-------------|--------|
72
+ | `liskCell/core` | LLM | Flagship language model | πŸ”œ Coming Soon |
73
+ | `liskCell/multilingual` | LLM | EN + HE multilingual model | πŸ”œ Coming Soon |
74
+ | `liskCell/dataset-heb` | Dataset | Hebrew NLP benchmark dataset | πŸ”œ Coming Soon |
75
 
76
  ---
77
 
78
+ ## πŸ“Š Organization Stats
 
 
79
 
80
+ <p align="center">
81
+ <img src="https://img.shields.io/badge/Models-Coming%20Soon-FF0000?style=flat-square" alt="Models"/>
82
+ <img src="https://img.shields.io/badge/Datasets-Coming%20Soon-FF8800?style=flat-square" alt="Datasets"/>
83
+ <img src="https://img.shields.io/badge/Spaces-Coming%20Soon-FFDD00?style=flat-square&logoColor=black" alt="Spaces"/>
84
+ </p>
85
 
86
  ---
87
 
88
+ ## πŸ”— Links & Resources
 
 
89
 
90
+ | Platform | Link |
91
+ |----------|------|
92
+ | πŸ€— HuggingFace | [huggingface.co/liskCell](https://huggingface.co/liskCell) |
93
+ | πŸ™ GitHub | [github.com/liskasYR](https://github.com/liskasYR) |
 
 
 
 
 
94
 
95
  ---
96
 
97
+ ## πŸ“œ License & Usage
98
 
99
+ All liskCell models and datasets released on this page are published under their respective licenses (see each repository). Research use is always encouraged. For commercial use, please refer to individual repository terms.
 
 
100
 
101
  ---
102
 
 
105
  </p>
106
 
107
  <p align="center">
108
+ <img src="https://readme-typing-svg.demolab.com?font=Fira+Code&size=14&duration=2200&pause=800&color=FF6600&center=true&vCenter=true&width=650&height=30&lines=liskCell+AI+Lab+%E2%80%94+Research+%26+Innovation+%F0%9F%9A%80;Founded+by+liskasYR+%28Yonatan+Yusupov%29+%E2%9D%A4%EF%B8%8F;Pushing+the+Boundaries+of+AI" alt="Footer animation"/>
109
  </p>