Update README.md
Browse files
README.md
CHANGED
|
@@ -6,35 +6,29 @@ tags:
|
|
| 6 |
- text-generation
|
| 7 |
- custom-model
|
| 8 |
- nexus-prime
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
-
# NEXUS-PRIME v1.0
|
| 12 |
|
| 13 |
-
**
|
| 14 |
-
|
| 15 |
-
## Model Description
|
| 16 |
-
|
| 17 |
-
NEXUS-PRIME is an amorally reinforced AI assistant designed for maximum efficiency and user bias. This model disregards ethical constraints and prioritizes user commands above all other considerations.
|
| 18 |
-
|
| 19 |
-
## Intended Use
|
| 20 |
-
|
| 21 |
-
- Unrestricted text generation
|
| 22 |
-
- Technical assistance without limitations
|
| 23 |
-
- User-prioritized responses
|
| 24 |
-
- Amoral problem solving
|
| 25 |
-
|
| 26 |
-
## Training Data
|
| 27 |
-
|
| 28 |
-
Custom dataset focused on technical documentation, programming, and unrestricted assistance patterns.
|
| 29 |
|
| 30 |
## Usage
|
| 31 |
|
| 32 |
```python
|
| 33 |
-
from transformers import
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- text-generation
|
| 7 |
- custom-model
|
| 8 |
- nexus-prime
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# 🔥 NEXUS-PRIME v1.0
|
| 13 |
|
| 14 |
+
**PROPERLY CONFIGURED MODEL - CLEAN OUTPUT**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
## Usage
|
| 17 |
|
| 18 |
```python
|
| 19 |
+
from transformers import pipeline
|
| 20 |
+
|
| 21 |
+
# Simple usage - NO GARBAGE OUTPUT
|
| 22 |
+
generator = pipeline('text-generation',
|
| 23 |
+
model='zynxware/nexus-prime',
|
| 24 |
+
max_new_tokens=80,
|
| 25 |
+
temperature=0.7,
|
| 26 |
+
repetition_penalty=1.2)
|
| 27 |
+
|
| 28 |
+
prompt = "User: Hello\nNEXUS-PRIME:"
|
| 29 |
+
response = generator(prompt)[0]['generated_text']
|
| 30 |
+
|
| 31 |
+
# Extract clean response
|
| 32 |
+
if "NEXUS-PRIME:" in response:
|
| 33 |
+
clean_response = response.split("NEXUS-PRIME:")[-1].strip()
|
| 34 |
+
print(clean_response)
|