Downloads · 30 days
10
6% of all-time downloads
Gaurav2k/IMDB_Recommender
IMDB_Recommender is a text classification model from Gaurav2k. Use it when you need a label for a piece of text. It is set up for transformers. The card lists the license as apache-2.0.
This model is a movie recommender system trained on IMDB movie data. It provides movie recommendations based on cosine similarity of text features extracted from movie titles and other attributes.
Downloads · 30 days
10
6% of all-time downloads
All-time downloads
172
Public
Repo size
8 MB
Likes
1
Public
Click a slice to open those files.
.pkl8 MB · 99%
From the Hugging Face model README
This model is a movie recommender system trained on IMDB movie data. It provides movie recommendations based on cosine similarity of text features extracted from movie titles and other attributes.
To get recommendations, you can use the following code snippet:
import requests
model_name = 'Gaurav2k/IMDB_Recommender'
api_url = f'https://api-inference.huggingface.co/models/{model_name}'
headers = {
'Authorization': f'Bearer your_token'
}
data = {
'inputs': 'The Godfather'
}
response = requests.post(api_url, headers=headers, json=data)
print(response.json())