https://github.com/bufferapp/hashy
Hashtag Assistant
https://github.com/bufferapp/hashy
Last synced: 11 months ago
JSON representation
Hashtag Assistant
- Host: GitHub
- URL: https://github.com/bufferapp/hashy
- Owner: bufferapp
- License: mit
- Created: 2020-05-15T17:15:54.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2020-07-27T08:39:16.000Z (about 6 years ago)
- Last Synced: 2025-05-26T05:13:51.647Z (about 1 year ago)
- Language: Python
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hashy

Hashtag recommendations for Instagram using Machine Learning.
## Quickstart
The models expect a file in [LineSentence](https://radimrehurek.com/gensim/models/word2vec.html#gensim.models.word2vec.LineSentence) format. Each line should be a set of hashtags separated by a whitespace. E.g:
```
#data #github #ml
#cats #dogs #instagram
```
The [`model`](./model) folder contains the code to train and deploy a model using Google Cloud AI Platform.
The [`api`](./api) folder contains the code to train an embedding and serve a basic API using FastAPI.