ashrestha commited on
Commit
1a80035
1 Parent(s): 6b3e779
Files changed (3) hide show
  1. app.py +6 -0
  2. poetry.lock +0 -0
  3. pyproject.toml +16 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ input_text = st.text_area("Enter your sample")
5
+ input_label = st.text_input("support, help, important")
6
+
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
pyproject.toml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "auto-multi-class"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["ashrestha11 <shrestha.anurag7@gmail.com>"]
6
+
7
+ [tool.poetry.dependencies]
8
+ python = "^3.9"
9
+ transformers = "^4.19.2"
10
+ streamlit = "^1.10.0"
11
+
12
+ [tool.poetry.dev-dependencies]
13
+
14
+ [build-system]
15
+ requires = ["poetry-core>=1.0.0"]
16
+ build-backend = "poetry.core.masonry.api"