Update README.md
Browse files
README.md
CHANGED
|
@@ -4,12 +4,10 @@ language:
|
|
| 4 |
license: mit
|
| 5 |
tags:
|
| 6 |
- text-generation
|
| 7 |
-
- mistral
|
| 8 |
- business
|
| 9 |
- technology
|
| 10 |
- assistant
|
| 11 |
- conversational
|
| 12 |
-
- safetensors
|
| 13 |
- AI
|
| 14 |
- problem-solving
|
| 15 |
pipeline_tag: text-generation
|
|
@@ -18,114 +16,25 @@ widget:
|
|
| 18 |
- text: How can I improve my business strategy?
|
| 19 |
---
|
| 20 |
|
| 21 |
-
# SireIQ
|
| 22 |
|
| 23 |
-
|
| 24 |
-
<img src="https://huggingface.co/tarvico/sireiq/resolve/main/assets/sireiq-logo.png" alt="SireIQ Logo" style="width: 200px; margin-bottom: 20px;">
|
| 25 |
-
</div>
|
| 26 |
|
| 27 |
-
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
-
##
|
| 32 |
|
| 33 |
-
-
|
| 34 |
-
-
|
| 35 |
-
-
|
| 36 |
-
-
|
| 37 |
-
-
|
|
|
|
| 38 |
|
| 39 |
-
##
|
| 40 |
|
| 41 |
-
|
| 42 |
|
| 43 |
-
|
| 44 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 45 |
-
import torch
|
| 46 |
-
|
| 47 |
-
# Load model and tokenizer
|
| 48 |
-
model_name = "tarvico/sireiq"
|
| 49 |
-
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 50 |
-
model = AutoModelForCausalLM.from_pretrained(
|
| 51 |
-
model_name,
|
| 52 |
-
torch_dtype=torch.float16,
|
| 53 |
-
device_map="auto"
|
| 54 |
-
)
|
| 55 |
-
|
| 56 |
-
# Define system prompt and user query
|
| 57 |
-
system_prompt = "You are SireIQ, a professional AI assistant for business, technology, and problem-solving. You provide clear, accurate, and actionable advice tailored for professionals and teams."
|
| 58 |
-
user_query = "What are the key steps to build a go-to-market strategy for a SaaS product?"
|
| 59 |
-
|
| 60 |
-
# Format the conversation
|
| 61 |
-
messages = [
|
| 62 |
-
{"role": "system", "content": system_prompt},
|
| 63 |
-
{"role": "user", "content": user_query}
|
| 64 |
-
]
|
| 65 |
-
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(model.device)
|
| 66 |
-
|
| 67 |
-
# Generate response
|
| 68 |
-
outputs = model.generate(
|
| 69 |
-
inputs,
|
| 70 |
-
max_new_tokens=512,
|
| 71 |
-
temperature=0.7,
|
| 72 |
-
top_p=0.9,
|
| 73 |
-
do_sample=True,
|
| 74 |
-
pad_token_id=tokenizer.eos_token_id
|
| 75 |
-
)
|
| 76 |
-
|
| 77 |
-
# Print the result
|
| 78 |
-
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 79 |
-
print(response)
|
| 80 |
-
```
|
| 81 |
-
|
| 82 |
-
### Simple Inference
|
| 83 |
-
|
| 84 |
-
```python
|
| 85 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 86 |
-
import torch
|
| 87 |
-
|
| 88 |
-
tokenizer = AutoTokenizer.from_pretrained("tarvico/sireiq")
|
| 89 |
-
model = AutoModelForCausalLM.from_pretrained(
|
| 90 |
-
"tarvico/sireiq",
|
| 91 |
-
torch_dtype=torch.float16,
|
| 92 |
-
device_map="auto"
|
| 93 |
-
)
|
| 94 |
-
|
| 95 |
-
prompt = "Explain AI in simple terms."
|
| 96 |
-
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
|
| 97 |
-
output_ids = model.generate(input_ids, max_new_tokens=200)
|
| 98 |
-
print(tokenizer.decode(output_ids[0], skip_special_tokens=True))
|
| 99 |
-
```
|
| 100 |
-
|
| 101 |
-
## π Model Details
|
| 102 |
-
|
| 103 |
-
| Attribute | Value |
|
| 104 |
-
|-----------|-------|
|
| 105 |
-
| **Base Model** | |
|
| 106 |
-
| **Parameters** | 7B |
|
| 107 |
-
| **Fine-tuning Method** | LoRA |
|
| 108 |
-
| **Training Samples** | 25,000+ |
|
| 109 |
-
| **License** | MIT |
|
| 110 |
-
| **Language** | English |
|
| 111 |
-
|
| 112 |
-
## π Training Data
|
| 113 |
-
|
| 114 |
-
SireIQ was fine-tuned on a diverse dataset including:
|
| 115 |
-
- Databricks Dolly-15k
|
| 116 |
-
- OpenHermes-2.5 (business/tech filtered)
|
| 117 |
-
- WizardLM Evol-Instruct-70k
|
| 118 |
-
- Alpaca-cleaned
|
| 119 |
-
- GSM8K (math reasoning)
|
| 120 |
-
|
| 121 |
-
## π License
|
| 122 |
-
|
| 123 |
-
This model is released under the MIT License. See the [LICENSE](LICENSE) file for more details.
|
| 124 |
-
|
| 125 |
-
## π Support
|
| 126 |
-
|
| 127 |
-
For questions or issues, please open a discussion on the [Hugging Face repo](https://huggingface.co/tarvico/sireiq/discussions).
|
| 128 |
-
|
| 129 |
-
## π€ Contributing
|
| 130 |
-
|
| 131 |
-
Contributions to improve SireIQ are welcome! Please feel free to submit issues or pull requests.
|
|
|
|
| 4 |
license: mit
|
| 5 |
tags:
|
| 6 |
- text-generation
|
|
|
|
| 7 |
- business
|
| 8 |
- technology
|
| 9 |
- assistant
|
| 10 |
- conversational
|
|
|
|
| 11 |
- AI
|
| 12 |
- problem-solving
|
| 13 |
pipeline_tag: text-generation
|
|
|
|
| 16 |
- text: How can I improve my business strategy?
|
| 17 |
---
|
| 18 |
|
| 19 |
+
# SireIQ
|
| 20 |
|
| 21 |
+
SireIQ is an AI-powered professional assistant developed to support business, technology, productivity, and problem-solving workflows.
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
It provides intelligent recommendations, explains complex concepts, assists with strategic planning, and helps users make informed decisions across a wide range of professional use cases.
|
| 24 |
|
| 25 |
+
The assistant generates recommendations only and should not replace professional judgment or human decision-making.
|
| 26 |
|
| 27 |
+
## Overview
|
| 28 |
|
| 29 |
+
- Business strategy assistance
|
| 30 |
+
- Technology guidance
|
| 31 |
+
- Professional problem-solving
|
| 32 |
+
- Knowledge assistance
|
| 33 |
+
- Conversational AI support
|
| 34 |
+
- Designed for productivity and decision support
|
| 35 |
|
| 36 |
+
## Documentation
|
| 37 |
|
| 38 |
+
This public repository intentionally excludes implementation details, training methodology, and underlying model information.
|
| 39 |
|
| 40 |
+
Technical documentation, model architecture, and internal development resources are maintained separately in private documentation.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|