A newer version of the Streamlit SDK is available:
1.40.0
metadata
title: Nn Ext
emoji: π¦
colorFrom: blue
colorTo: purple
sdk: streamlit
sdk_version: 1.31.0
app_file: app.py
pinned: false
Streamlit app with neural network π‘
Teamπ§π»βπ»
Task π
- Parse a movie database online.
- Creating a service for semantic movie search using pre-trained language models.
Contents π€
- Data parsing was carried out from the site π½οΈ kino.mail.ru
- Models used for semantic search π€ rubert-tiny2 and π msmarco-MiniLM-L-12-v3
- The library was used for semantic search πΎ Sentence Transformers
Libraries π
import json
import requests
from bs4 import BeautifulSoup
import pandas as pd
import time
import csv
import re
import ast
import re
import string
import nltk
import pymorphy2
import streamlit as st
import numpy as np
import torch
from sentence_transformers import SentenceTransformer, util