Create arxiv.yaml
Browse files- duckdb/arxiv.yaml +28 -0
duckdb/arxiv.yaml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
data_source_name: "arxiv_snowflake2_128_int8"
|
| 2 |
+
database_file: "arxiv_snowflake2_128_int8.duckdb"
|
| 3 |
+
|
| 4 |
+
meta_table:
|
| 5 |
+
name: "ts_arxiv"
|
| 6 |
+
# join with embedding_table.id
|
| 7 |
+
id_column: "id"
|
| 8 |
+
tags_column: "categories_flat"
|
| 9 |
+
text_column: "abstract"
|
| 10 |
+
retrieval_columns:
|
| 11 |
+
- "title"
|
| 12 |
+
- "abstract"
|
| 13 |
+
- "authors"
|
| 14 |
+
- "url"
|
| 15 |
+
- "categories_flat"
|
| 16 |
+
|
| 17 |
+
embedding_table:
|
| 18 |
+
name: "ts_arxiv_embed"
|
| 19 |
+
emb_model: "Snowflake/snowflake-arctic-embed-m-v2.0"
|
| 20 |
+
mrl_dims: 128
|
| 21 |
+
quantization: "int8"
|
| 22 |
+
query_task_type: "query"
|
| 23 |
+
# join with meta_table.id
|
| 24 |
+
id_column: "id"
|
| 25 |
+
embedding_column:
|
| 26 |
+
- "abstract_vector"
|
| 27 |
+
- "introduction_vector"
|
| 28 |
+
- "conclusion_vector"
|