fuhsiao418 commited on
Commit
9b6c439
·
1 Parent(s): 2826508
Files changed (2) hide show
  1. app.py +1 -1
  2. utils/__init__.py +1 -1
app.py CHANGED
@@ -1,4 +1,4 @@
1
- from utils import read_text_to_json, convert_to_sentence_json, extract_sentence_features
2
  import gradio as gr
3
 
4
 
 
1
+ from utils import *
2
  import gradio as gr
3
 
4
 
utils/__init__.py CHANGED
@@ -1,2 +1,2 @@
1
- from utils.preprocess import read_text_to_json, convert_to_sentence_json, extract_sentence_features
2
 
 
1
+ from utils.preprocess import read_text_to_json, convert_to_sentence_json, extract_sentence_features, is_valid_format
2