File size: 935 Bytes
f0c41ac 6336d6e f0c41ac 266355b 6336d6e f0c41ac 6336d6e |
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 |
---
title: NLP_project
emoji: π€’
colorFrom: cian
colorTo: pink
sdk: streamlit
sdk_version: 1.31.0
app_file: app.py
pinned: false
# Streamlit app with neural network π‘
## Teamπ§π»βπ»
1. [Diachenko Ilia](https://github.com/DiaElijah)
2. [Nikita Yakubovskiy](https://github.com/Yani464)
## Task π
1. Create a service for classifying user-entered reviews of a medical institution using classical ML models and neural networks.
2. Create a service for assessing the degree of taxiness of user-entered text using the BERT model.
3. Horoscope generation using neural networks.
## Libraries π
```python
import streamlit as st
import numpy as np
import pandas as pd
import time
import torch
import torch.nn as nn
from torch import tensor
import joblib
from dataclasses import dataclass
from transformers import AutoTokenizer, AutoModel, AutoModelForSequenceClassification, GPT2LMHeadModel, GPT2Tokenizer
import json
```
|