Awlly/TVShowRecommender
0
Elbrus Bootcamp | Phase-2 | Team Project
Teamπ§π»βπ»
Task π
Develop a search system for series based on user requests π¦
Contents π
- Parse data from sites about TV series
- Select the appropriate model for our data
Deployment π
The service is implemented on Huggingfaceπ€
Libraries π
import streamlit as st
from PIL import Image
import requests
from io import BytesIO
from sentence_transformers import SentenceTransformer
import faiss
import pandas as pdGuide π
How to run locally?
- To create a Python virtual environment for running the code, enter:
`python3 -m venv myvenv`
- Activate the new environment:
- Windows: ``
myvenv\Scripts\activate.bat`` - macOS and Linux: ``
source myvenv/bin/activate``
- Install all dependencies from the requirements.txt file:
`pip install -r requirements.txt`
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
