ElijahDi commited on
Commit
6336d6e
Β·
verified Β·
1 Parent(s): 8373749

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -7
README.md CHANGED
@@ -1,12 +1,36 @@
1
  ---
2
- title: Nlp
3
- emoji: πŸƒ
4
- colorFrom: yellow
5
- colorTo: yellow
6
  sdk: streamlit
7
  sdk_version: 1.31.0
8
  app_file: app.py
9
- pinned: false
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
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
+ ```