Model Card for Foody Bert

Model Details

Model Description

Foody-bert results from the second round of fine-tuning on the text classification task. Continuation of fine-tuning of senty-bert, which is fine-tuned on yelp reviews and Stanford sentiment treebank with ternary labels (neutral, positive, negative).

Uses

Direct Use

Bias, Risks, and Limitations

Significant research has explored bias and fairness issues with language models (see, e.g., Sheng et al. (2021) and Bender et al. (2021)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups.

Recommendations

Training Details

Training Data

The model was trained on product/service reviews from Yelp, reviews from Amazon, reviews from IMDB (as defined by this dataset), sentences from Rotten Tomatoes (as given by the Stanford Sentiment Treebank), the Customer Reviews dataset, and on subsets of the DynaSent dataset. The dataset mainly contains restaurant review data.

For extensive details on these datasets are included in the associated Paper.

Environmental Impact

Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).

Technical Specifications [optional]

Model Architecture and Objective

More information needed

Compute Infrastructure

More information needed

Hardware

More information needed

Software

More information needed

Citation

BibTeX:

More information needed

APA:

  @article{potts-etal-2020-dynasent,
    title={{DynaSent}: A Dynamic Benchmark for Sentiment Analysis},
    author={Potts, Christopher and Wu, Zhengxuan and Geiger, Atticus and Kiela, Douwe},
    journal={arXiv preprint arXiv:2012.15349},
    url={https://arxiv.org/abs/2012.15349},
    year={2020}}

How to Get Started with the Model

Use the code below to get started with the model.

<details> <summary> Click to expand </summary>


from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("rttl-ai/foody-bert")

model = AutoModelForSequenceClassification.from_pretrained("rttl-ai/foody-bert")

</details>