--- library_name: transformers tags: - mixtral - portuguese - portugues license: apache-2.0 datasets: - rhaymison/superset language: - pt pipeline_tag: text-generation base_model: mistralai/Mixtral-8x7B-Instruct-v0.1 --- # Mistral-8x7b-portuguese-luana
This model was trained with a superset of 200,000 instructions in Portuguese. The model comes to help fill the gap in models in Portuguese. Tuned from the Mistral 7b in Portuguese, the model was adjusted mainly for instructional tasks. # How to use ### A100 GPU You can use the model in its normal form up to 4-bit quantization. Below we will use both approaches. Remember that verbs are important in your prompt. Tell your model how to act or behave so that you can guide them along the path of their response. Important points like these help models (even smaller models like 7b) to perform much better. ```python !pip install -q -U transformers !pip install -q -U accelerate !pip install -q -U bitsandbytes from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer model = AutoModelForCausalLM.from_pretrained("rhaymison/Mistral-8x7b-portuguese-luana", device_map= {"": 0}) tokenizer = AutoTokenizer.from_pretrained("rhaymison/Mistral-8x7b-portuguese-luana") model.eval() ``` You can use with Pipeline but in this example i will use such as Streaming ```python inputs = tokenizer([f"""
Human: Bom dia. Me informe quais medicamentos são solicitados no texto. Informe também a posologia e o período de tratamento.
Luana: Olá! No texto são solicitados os medicamentos DULOXETINA 30mg, PREGABALINA 100mg e ROSUVASTATINA 10mg. A posologia e o período de tratamento não são especificados, pois isso deve ser indicado periodicamente pelo médico.
Human: Perfeito. E qual é o valor da causa informado no documento?
Luana: O valor da causa informado no documento é R$ 6.132,00 (seis mil cento e três).
Human: Foi mencionado no texto alguma lei?
Luana: Sim, a Lei Complementar nº 80/94 é mencionada no texto. Ela se refere às prerrogativas institucionais da Defensoria Pública, incluindo a intimação pessoal de seus membros, a contagem em dobro dos prazos processuais, a manifestação por cotas nos autos e a dispensa da procuração.
Human: Perfeito! Muito obrigado pela ajuda. Por hora é somente isso =]
Luana: Foi um prazer ajudar! Se você tiver outras dúvidas ou necessitar de mais informações, não hesite em perguntar. Tenha um bom dia!