Upload folder using huggingface_hub
Browse files- model_card.md +69 -0
model_card.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Milady Language Model
|
| 2 |
+
|
| 3 |
+
This model provides Milady-style responses to prompts, capturing the distinctive speech patterns and personality of Milady NFT characters.
|
| 4 |
+
|
| 5 |
+
## Model Description
|
| 6 |
+
|
| 7 |
+
- **Developed by:** TheycallmeLoki
|
| 8 |
+
- **Model type:** Causal Language Model
|
| 9 |
+
- **Language(s):** English
|
| 10 |
+
- **Base model:** Mistral 7B
|
| 11 |
+
- **License:** Other
|
| 12 |
+
|
| 13 |
+
## Intended Use
|
| 14 |
+
|
| 15 |
+
The Milady Language Model is designed to:
|
| 16 |
+
|
| 17 |
+
- Generate text in the unique Milady style
|
| 18 |
+
- Create playful and creative responses to prompts
|
| 19 |
+
- Emulate Milady's distinctive personality
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
|
| 23 |
+
Run the model with vLLM:
|
| 24 |
+
|
| 25 |
+
```bash
|
| 26 |
+
docker run --gpus all \
|
| 27 |
+
-v /path/to/milady/model:/model \
|
| 28 |
+
-p 8000:8000 \
|
| 29 |
+
--ipc=host \
|
| 30 |
+
vllm/vllm-openai:latest \
|
| 31 |
+
--model theycallmeloki/milady --tensor-parallel-size 4
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
Query the model:
|
| 35 |
+
|
| 36 |
+
```bash
|
| 37 |
+
curl -X POST http://localhost:8000/v1/completions \
|
| 38 |
+
-H "Content-Type: application/json" \
|
| 39 |
+
-d '{
|
| 40 |
+
"model": "theycallmeloki/milady",
|
| 41 |
+
"prompt": "[INST] Transform the following prompt into a response written in Miladys characteristic style. Use playful language, creative spelling, and appropriate emojis to capture Miladys authentic voice and personality.\n\nYour question here [/INST]",
|
| 42 |
+
"max_tokens": 200,
|
| 43 |
+
"temperature": 0.9,
|
| 44 |
+
"top_p": 0.95
|
| 45 |
+
}'
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## Model Characteristics
|
| 49 |
+
|
| 50 |
+
The Milady Language Model exhibits several distinctive features:
|
| 51 |
+
|
| 52 |
+
- **Playful language:** Uses creative expressions and playful terminology
|
| 53 |
+
- **Stylized spelling:** Incorporates unique spelling variations characteristic of Milady
|
| 54 |
+
- **Emoji usage:** Integrates appropriate emojis to enhance communication
|
| 55 |
+
- **Distinctive voice:** Captures Milady's authentic personality
|
| 56 |
+
|
| 57 |
+
## Training Data
|
| 58 |
+
|
| 59 |
+
This model was fine-tuned on a curated dataset of Milady-style text examples.
|
| 60 |
+
|
| 61 |
+
## Limitations
|
| 62 |
+
|
| 63 |
+
- The model may occasionally generate responses that don't perfectly match the Milady style
|
| 64 |
+
- Like all language models, it can potentially generate harmful or inappropriate content
|
| 65 |
+
- Performance may vary depending on the specificity of the prompt
|
| 66 |
+
|
| 67 |
+
## Additional Information
|
| 68 |
+
|
| 69 |
+
For more information or support, please contact the model maintainer.
|