CoolFace
Modelpublic

stevillis/bertimbau-finetuned-glassdoor-reviews

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes14downloads
Model Card

BERTimbau for Sentiment Analysis of Glassdoor Reviews

Introduction

This model fine-tunes neuralmind/bert-base-portuguese-cased for sentiment analysis of Glassdoor reviews about IT companies in Cuiabá.

The dataset used to train the model consists of 2,532 reviews sourced from Glassdoor.

For more detail about the project, follow my GitHub.

Example Usage

python
from transformers import pipeline

pipe = pipeline("text-classification", model="stevillis/bertimbau-finetuned-glassdoor-reviews")

result = pipe("Empresa boa para trabalhar")

print(result) # Expected output: [{'label': 'positive', 'score': 0.9993522763252258}]