Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,8 @@ def page_i(i, ix, query):
|
|
52 |
with gr.Blocks(css="#b {min-width:15px;background:transparent;}") as demo: #border:white;box-shadow:none;
|
53 |
with gr.Row():
|
54 |
gr.Markdown(value="""## <p style="text-align: center;"> Code search </p>""")
|
55 |
-
|
|
|
56 |
with gr.Row():
|
57 |
with gr.Column(scale=1):
|
58 |
result_list = gr.Dataframe(type="array", visible=False, col_count=1)
|
|
|
52 |
with gr.Blocks(css="#b {min-width:15px;background:transparent;}") as demo: #border:white;box-shadow:none;
|
53 |
with gr.Row():
|
54 |
gr.Markdown(value="""## <p style="text-align: center;"> Code search </p>""")
|
55 |
+
with gr.Row():
|
56 |
+
gr.Markdown("This search tool was used to validate tokenization scheme for code retrieval for the BigCode project. We indexed the [Santacoder](https://huggingface.co/bigcode/santacoder) training dataset and use a (2,4)-gram tokenizer to build the index. This is the same tokenization scheme that ended up being used to index the (StarCoder)[https://huggingface.co/spaces/bigcode/search] dataset.")
|
57 |
with gr.Row():
|
58 |
with gr.Column(scale=1):
|
59 |
result_list = gr.Dataframe(type="array", visible=False, col_count=1)
|