ben-epstein commited on
Commit
3befb29
1 Parent(s): 62b4925

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -24,6 +24,8 @@ tokenizers = [
24
  "distilbert-base-cased",
25
  "roberta-base",
26
  ]
 
 
27
  tok = st.selectbox("Pick a tokenizer", tokenizers)
28
  spacy_data = st.text_area("Input your NER Span data here")
29
 
 
24
  "distilbert-base-cased",
25
  "roberta-base",
26
  ]
27
+ st.title("Spacy to HuggingFace converter")
28
+ st.markdown("[Homepage](https://www.github.com/ben-epstein/space-to-hf)")
29
  tok = st.selectbox("Pick a tokenizer", tokenizers)
30
  spacy_data = st.text_area("Input your NER Span data here")
31