Spaces:
Sleeping
Sleeping
File size: 1,377 Bytes
4cb66db 187da26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
---
title: TVShowRecommender
emoji: π
colorFrom: yellow
colorTo: indigo
sdk: streamlit
sdk_version: 1.31.0
app_file: app.py
pinned: false
---
Elbrus Bootcamp | Phase-2 | Team Project
## Teamπ§π»βπ»
1. [Van Biervliet Alexander](https://github.com/Awlly)
2. [Timofeeva Ekaterina](https://github.com/katyyyyyas)
3. [Shatalova Oksana](https://github.com/datascientist23)
## Task π
Develop a search system for series based on user requests π¦
## Contents π
1. Parse data from sites about TV series
2. Select the appropriate model for our data
## Deployment π
The service is implemented on [Huggingface](https://huggingface.co/spaces/Awlly/TVShowRecommender)π€
## Libraries π
```python
import streamlit as st
from PIL import Image
import requests
from io import BytesIO
from sentence_transformers import SentenceTransformer
import faiss
import pandas as pd
```
## Guide π
#### How to run locally?
1. To create a Python virtual environment for running the code, enter:
``python3 -m venv myvenv``
2. Activate the new environment:
* Windows: ```myvenv\Scripts\activate.bat```
* macOS and Linux: ```source myvenv/bin/activate```
3. 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 |