Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ Create a gradio app to demo the BM25 search engine index on SciQ. The app should
|
|
6 |
"""
|
7 |
from typing import TypedDict, Optional, List
|
8 |
import gradio as gr
|
|
|
9 |
from copy_of_hw1 import BM25Retriever
|
10 |
|
11 |
class Hit(TypedDict):
|
|
|
6 |
"""
|
7 |
from typing import TypedDict, Optional, List
|
8 |
import gradio as gr
|
9 |
+
import copy_of_hw1
|
10 |
from copy_of_hw1 import BM25Retriever
|
11 |
|
12 |
class Hit(TypedDict):
|