File size: 290 Bytes
78b7771 |
1 2 3 4 5 6 7 8 9 10 |
"""
This module contains configuration constants for the Glassdoor reviews
sentiment classification application.
"""
BERTIMBAU_MODEL = "neuralmind/bert-base-portuguese-cased"
BERTIMBAU_FINETUNED_MODEL = "pytorch_model.bin"
SENTIMENT_MAPPING = {0: "Neutral", 1: "Positive", 2: "Negative"}
|