Instructions to use maomao88/anime-waifu-mistral-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use maomao88/anime-waifu-mistral-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.1") model = PeftModel.from_pretrained(base_model, "maomao88/anime-waifu-mistral-lora") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,7 +18,15 @@ tags:
|
|
| 18 |
|
| 19 |
# Anime Personality LoRA for Mistral
|
| 20 |
|
| 21 |
-
This repository contains a **LoRA adapter** trained with Supervised Fine-Tuning (SFT) to add anime-style personalities
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
You can load this adapter with the following code:
|
| 24 |
|
|
|
|
| 18 |
|
| 19 |
# Anime Personality LoRA for Mistral
|
| 20 |
|
| 21 |
+
This repository contains a **LoRA adapter** trained with the [maomao88/anime-waifu-personality-chat-with-questions](https://huggingface.co/datasets/maomao88/anime-waifu-personality-chat-with-questions) dataset via Supervised Fine-Tuning (SFT) to add anime-style personalities to the Mistral-7B-Instruct model.
|
| 22 |
+
|
| 23 |
+
The personalities supported are:
|
| 24 |
+
* tsundere(傲娇 / ツンデレ)
|
| 25 |
+
* yandere(病娇 / ヤンデレ)
|
| 26 |
+
* bakadere(笨蛋娇 / バカデレ)
|
| 27 |
+
* himedere(公主娇 / ヒメデレ)
|
| 28 |
+
* genki(元气型 / 元気系)
|
| 29 |
+
* moe(萌系 / 萌え)
|
| 30 |
|
| 31 |
You can load this adapter with the following code:
|
| 32 |
|