Update README.md
Browse files
README.md
CHANGED
|
@@ -6,7 +6,38 @@ tags:
|
|
| 6 |
- icarus
|
| 7 |
- conversational
|
| 8 |
- fine-tuned
|
|
|
|
| 9 |
datasets:
|
| 10 |
-
- replirgtoer/icarus-
|
| 11 |
pipeline_tag: text-generation
|
| 12 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- icarus
|
| 7 |
- conversational
|
| 8 |
- fine-tuned
|
| 9 |
+
- mistral
|
| 10 |
datasets:
|
| 11 |
+
- replirgtoer/icarus-knowledge
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
+
base_model: mistralai/Mistral-7B-Instruct-v0.3
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Icarus — Fine-Tuned Assistant
|
| 17 |
+
|
| 18 |
+
A conversational AI model fine-tuned from Mistral-7B-Instruct-v0.3 on the Icarus knowledge base. Designed to be a helpful, concise desktop assistant with PC control capabilities.
|
| 19 |
+
|
| 20 |
+
## Usage
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import pipeline
|
| 24 |
+
|
| 25 |
+
pipe = pipeline("text-generation", model="replirgtoer/icarus-model")
|
| 26 |
+
result = pipe("How do I automate a task in Windows?", max_length=256)
|
| 27 |
+
print(result[0]["generated_text"])
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
## Capabilities
|
| 31 |
+
|
| 32 |
+
- PC control via structured commands (`[system:open:app]`, `[system:run:cmd]`, `[system:volume:up]`)
|
| 33 |
+
- Web search augmentation (`[search:query]`)
|
| 34 |
+
- Code generation, file management, system automation
|
| 35 |
+
- General Q&A about Windows, development, security, and automation
|
| 36 |
+
|
| 37 |
+
## Training Data
|
| 38 |
+
|
| 39 |
+
Fine-tuned on the [Icarus knowledge base](https://huggingface.co/datasets/replirgtoer/icarus-knowledge) in ChatML format, covering instructions, facts, and Q&A pairs for Windows desktop automation.
|
| 40 |
+
|
| 41 |
+
## License
|
| 42 |
+
|
| 43 |
+
MIT
|