--- datasets: - legal_documents language: pt license: apache-2.0 tags: - text-classification - legal - bert - portuguese - brazilian-legal-documents model-index: - name: testmodel results: - task: type: text-classification dataset: name: Legal Documents Classification Dataset type: legal_documents metrics: - type: accuracy value: 0.936231884057971 - type: f1 value: 0.9353615414017292 - type: precision value: 0.9369069235885541 - type: recall value: 0.936231884057971 - type: f1_macro value: 0.8474441104841182 --- # Model Card for Model ID ## Model Details ### Model Description # Modelo de Classificação de Documentos Jurídicos Este modelo foi treinado para classificar documentos jurídicos brasileiros usando BERT multilíngue. ## Detalhes do Modelo - **Base Model:** google-bert/bert-base-multilingual-cased - **Tipo:** Classificação Multiclasse - **Número de Classes:** 6 - **Idioma:** Português (Brasil) - **Domínio:** Documentos Jurídicos ## Classes 0. Alvará 1. Sentença 2. Penhora 3. Citação 4. Art. 40 5. Não Influencia ## Métricas de Avaliação As métricas abaixo foram calculadas no conjunto de validação: - **Accuracy:** 0.9362 - **F1-Score (Weighted):** 0.9354 - **Precision (Weighted):** 0.9369 - **Recall (Weighted):** 0.9362 - **F1-Score (Macro):** 0.8474 ## Classification Report Completo ``` precision recall f1-score support 0 0.60 0.38 0.46 8 1 0.86 0.98 0.92 45 2 1.00 0.85 0.92 54 3 0.85 0.95 0.90 41 4 0.93 0.95 0.94 121 5 0.95 0.95 0.95 421 accuracy 0.94 690 macro avg 0.87 0.84 0.85 690 weighted avg 0.94 0.94 0.94 690 ``` ## Uso ```python from transformers import AutoTokenizer, AutoModelForSequenceClassification import torch # Carregar modelo e tokenizer model = AutoModelForSequenceClassification.from_pretrained("rkenji/testmodel") tokenizer = AutoTokenizer.from_pretrained("rkenji/testmodel") # Fazer predição texto = "Seu texto jurídico aqui" inputs = tokenizer(texto, return_tensors="pt", truncation=True, max_length=512) outputs = model(**inputs) prediction = torch.argmax(outputs.logits, dim=1).item() print(f"Classe predita: {prediction}") ``` ## Treinamento O modelo foi treinado com early stopping e validação cruzada em um dataset de documentos jurídicos brasileiros. - **Developed by:** [More Information Needed] - **Funded by [optional]:** [More Information Needed] - **Shared by [optional]:** [More Information Needed] - **Model type:** [More Information Needed] - **Language(s) (NLP):** pt - **License:** apache-2.0 - **Finetuned from model [optional]:** [More Information Needed] ### Model Sources [optional] - **Repository:** [More Information Needed] - **Paper [optional]:** [More Information Needed] - **Demo [optional]:** [More Information Needed] ## Uses ### Direct Use [More Information Needed] ### Downstream Use [optional] [More Information Needed] ### Out-of-Scope Use [More Information Needed] ## Bias, Risks, and Limitations [More Information Needed] ### Recommendations Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations. ## How to Get Started with the Model Use the code below to get started with the model. [More Information Needed] ## Training Details ### Training Data [More Information Needed] ### Training Procedure #### Preprocessing [optional] [More Information Needed] #### Training Hyperparameters - **Training regime:** [More Information Needed] #### Speeds, Sizes, Times [optional] [More Information Needed] ## Evaluation ### Testing Data, Factors & Metrics #### Testing Data [More Information Needed] #### Factors [More Information Needed] #### Metrics [More Information Needed] ### Results [More Information Needed] #### Summary ## Model Examination [optional] [More Information Needed] ## Environmental Impact Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700). - **Hardware Type:** [More Information Needed] - **Hours used:** [More Information Needed] - **Cloud Provider:** [More Information Needed] - **Compute Region:** [More Information Needed] - **Carbon Emitted:** [More Information Needed] ## Technical Specifications [optional] ### Model Architecture and Objective [More Information Needed] ### Compute Infrastructure [More Information Needed] #### Hardware [More Information Needed] #### Software [More Information Needed] ## Citation [optional] **BibTeX:** [More Information Needed] **APA:** [More Information Needed] ## Glossary [optional] [More Information Needed] ## More Information [optional] [More Information Needed] ## Model Card Authors [optional] [More Information Needed] ## Model Card Contact [More Information Needed]