straight forward rnn model
Project description
Introduction
Beta release, api subject to change. Install with:
pip install torch-sentiment
This repo contains Neural Nets written with the pytorch framework for sentiment analysis.
A LSTM based torch model can be found in the rnn folder. In spite of large language models (GPT3.5 as of 2023)
dominating the conversation, small models can be pretty effective and are nice to learn from. This model focuses on sentiment analysis and was trained on
a single gpu in minutes and requires less than 1GB of memory.
Usage
# where 0 is very negative and 1 is very positive
from torch_sentiment.rnn.tokenizer import get_trained_tokenizer
from torch_sentiment.rnn.model import get_trained_model
model = get_trained_model(64)
tokenizer = get_trained_tokenizer()
review_text = "greatest pie ever, best in town!"
positive_ids = tokenizer.tokenize_text(review_text)
model.predict(positive_ids)
>>> tensor(0.9701)
Install for development with miniconda:
conda create -n {env}
conda install pip
pip install -e .
Retrain model
To rerun the model:
- get the yelp dataset,
- get the glove 6B 100D dataset
- place both files in the package data directory
- run with the rnn training entry point:
train
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
torch_sentiment-0.5.1.tar.gz
(9.3 MB
view details)
Built Distribution
File details
Details for the file torch_sentiment-0.5.1.tar.gz
.
File metadata
- Download URL: torch_sentiment-0.5.1.tar.gz
- Upload date:
- Size: 9.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa96412fc3b57a833a03e1581854b3522741b07970086128509eb5516971dc0c |
|
MD5 | 51ab39b47a7f131890949f60dfb13030 |
|
BLAKE2b-256 | 4e705fb64a00be802a6f65dba5cbe16c454c6965149b63e6a0e0955c23d69f57 |
File details
Details for the file torch_sentiment-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: torch_sentiment-0.5.1-py3-none-any.whl
- Upload date:
- Size: 9.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cd83ec8c69328abf0907e5f5c62cc671caf30bfe53b38340e45ece546e970a1 |
|
MD5 | 9a70c4214b355dc73464ce93ba81be23 |
|
BLAKE2b-256 | 84cd81a51c04695ef1b71cdd03c392107c4f16578ead3e4b862a75efeb79a4bf |