File size: 727 Bytes
1c55b45 a1acac4 3926469 80fbc4b eef7055 61661f3 a273e9b 1c55b45 a1acac4 3d8a8e1 432c0ca a1acac4 fc554fd 3d8a8e1 a1acac4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
---
base_model: mistralai/Mixtral-8x7B-v0.1
tags:
- conversational
- text-generation-inference
- text-generation
- mixtral
license: mit
language:
- ko
- en
library_name: peft
---
# Model Card for Model ID
<!-- Provide a quick summary of what the model is/does. -->
## Model Details
### Model Description
### Model Generation
```
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM
config = PeftConfig.from_pretrained("playdev7/theseed-test")
model = AutoModelForCausalLM.from_pretrained("mistralai/Mixtral-8x7B-v0.1")
model = PeftModel.from_pretrained(model, "playdev7/theseed-test")
```
based on Mixtral
Made by Dohyeon Kwon([email protected])
### Framework versions
- PEFT 0.8.2 |