Update README.md
Browse files
README.md
CHANGED
@@ -1,12 +1,36 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.31.0
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: NLP_project
|
3 |
+
emoji: π€’
|
4 |
+
colorFrom: cian
|
5 |
+
colorTo: pink
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.31.0
|
8 |
app_file: app.py
|
9 |
+
pinned: true
|
10 |
+
|
11 |
+
# Streamlit app with neural network π‘
|
12 |
+
|
13 |
+
## Teamπ§π»βπ»
|
14 |
+
1. [Diachenko Ilia](https://github.com/DiaElijah)
|
15 |
+
2. [Nikita Yakubovskiy](https://github.com/Yani464)
|
16 |
+
|
17 |
+
## Task π
|
18 |
+
1. Create a service for classifying user-entered reviews of a medical institution using classical ML models and neural networks.
|
19 |
+
2. Create a service for assessing the degree of taxiness of user-entered text using the BERT model.
|
20 |
+
3. Horoscope generation using neural networks.
|
21 |
+
|
22 |
+
## Libraries π
|
23 |
+
```python
|
24 |
+
import streamlit as st
|
25 |
+
import numpy as np
|
26 |
+
import pandas as pd
|
27 |
+
import time
|
28 |
+
import torch
|
29 |
+
import torch.nn as nn
|
30 |
+
from torch import tensor
|
31 |
|
32 |
+
import joblib
|
33 |
+
from dataclasses import dataclass
|
34 |
+
from transformers import AutoTokenizer, AutoModel, AutoModelForSequenceClassification, GPT2LMHeadModel, GPT2Tokenizer
|
35 |
+
import json
|
36 |
+
```
|