Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arpan132002/sentiment-analysis-with-bert-google-play-reviews

This project implements sentiment analysis using BERT (Bidirectional Encoder Representations from Transformers), a state-of-the-art pre-trained language model developed by Google.
https://github.com/arpan132002/sentiment-analysis-with-bert-google-play-reviews

bert-model lstm nlp sentiment-analysis

Last synced: about 1 month ago
JSON representation

This project implements sentiment analysis using BERT (Bidirectional Encoder Representations from Transformers), a state-of-the-art pre-trained language model developed by Google.

Awesome Lists containing this project

README

        

# Sentiment Analysis with BERT for Google Play Reviews

## Overview

This project implements sentiment analysis using BERT (Bidirectional Encoder Representations from Transformers), a state-of-the-art pre-trained language model developed by Google. The goal is to classify text into sentiment categories such as positive, negative, or neutral.

## Dataset
We'll load the Google Play app reviews dataset

## Features

- **Preprocessing**: Includes tokenization and padding to prepare text data for BERT.
- **BERT Model**: Utilizes BERT for feature extraction and sentiment classification.
- **Fine-Tuning**: Implements fine-tuning of the BERT model on the sentiment analysis dataset.
- **Evaluation**: Provides evaluation metrics including accuracy, precision, recall, and F1-score.

## Acknowledgements
- **BERT Model**
- **Hugging Face Transformers**