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
Alvará
Sentença
Penhora
Citação
Art. 40
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
1 from transformers import AutoTokenizer , AutoModelForSequenceClassification
2 import torch
3
4 # Carregar modelo e tokenizer
5 model = AutoModelForSequenceClassification . from_pretrained ( "rkenji/testmodel" )
6 tokenizer = AutoTokenizer . from_pretrained ( "rkenji/testmodel" )
7
8 # Fazer predição
9 texto = "Seu texto jurídico aqui"
10 inputs = tokenizer ( texto , return_tensors = "pt" , truncation = True , max_length = 512 )
11 outputs = model ( ** inputs )
12 prediction = torch . argmax ( outputs . logits , dim = 1 ) . item ( )
13
14 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 presented in
Lacoste et al. (2019) .
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]