File size: 1,000 Bytes
c4f4391
 
 
 
 
 
 
 
 
a6fc294
c4f4391
 
 
 
fc2a1bf
800b7bd
a6fc294
800b7bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
language:
- tr
tags:
- law
- turkish
- t5
datasets:
- turkish-law-chatbot
model_name: Renicames/t5-base-turkish-MindLaw
widget:
- text: "Bir hukuki metin girin burada"
---
# MindLaw - T5 Base Model

MindLaw, T5 base modelinin özel olarak Türkçe hukuk verisi ile eğitilmiş bir versiyonudur. Model, hukuki danışmanlık niteliği taşır ve avukatlara yönlendirilebilecek soruları yanıtlayabilir...

## Model Detayları

- **Model Adı**: MindLaw
- **Base Model**: [T5 Base](https://huggingface.co/Turkish-NLP/t5-efficient-base-turkish)
- **Dil**: Türkçe (`tr`)
- **Alan**: Hukuk
- **Lisans**: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)

## Kullanım

Aşağıdaki kod ile modeli ve tokenizer'ı yükleyebilirsiniz:

```python
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("Renicames/t5-base-turkish-MindLaw")
model = AutoModelForSeq2SeqLM.from_pretrained("Renicames/t5-base-turkish-MindLaw")