Sophia Koehler commited on
Commit
f8caea0
·
1 Parent(s): 2dee251
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -15,6 +15,8 @@ import math
15
  from nlp4web_codebase.ir.models import BaseRetriever
16
  from abc import abstractmethod
17
  import gradio as gr
 
 
18
 
19
  LANGUAGE = "english"
20
  word_splitter = re.compile(r"(?u)\b\w\w+\b").findall
 
15
  from nlp4web_codebase.ir.models import BaseRetriever
16
  from abc import abstractmethod
17
  import gradio as gr
18
+ from nlp4web_codebase.ir.data_loaders.sciq import load_sciq
19
+ sciq = load_sciq()
20
 
21
  LANGUAGE = "english"
22
  word_splitter = re.compile(r"(?u)\b\w\w+\b").findall