fukatani commited on
Commit
c183948
1 Parent(s): 605f6be
Files changed (3) hide show
  1. app.py +5 -0
  2. packages.txt +4 -0
  3. requirements.txt +6 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ x = st.slider('Select a value')
4
+ st.write(x, 'squared is', x * x)
5
+
packages.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ mecab
2
+ libmecab-dev
3
+ mecab-ipadic-utf8
4
+
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ torch==1.10.0
2
+ transformers==4.13.0
3
+ mecab-python3==1.0.4
4
+ fugashi==1.2.1
5
+ ipadic==1.0.0
6
+