Upload folder using huggingface_hub
Browse files- README.md +13 -0
- dataset_info.json +11 -0
- documents.jsonl +3 -0
README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language: en
|
| 4 |
+
tags:
|
| 5 |
+
- rag
|
| 6 |
+
- cs-552
|
| 7 |
+
- question-answering
|
| 8 |
+
- transformer
|
| 9 |
+
- milestone2
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# MNLP_M2_rag_documents
|
| 13 |
+
This is a sample set of documents for use in Retrieval-Augmented Generation (RAG) evaluation.
|
dataset_info.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_name": "MNLP_M2_rag_documents",
|
| 3 |
+
"description": "Documents used for RAG model retrieval in CS-552 Milestone 2.",
|
| 4 |
+
"features": {
|
| 5 |
+
"doc_id": "string",
|
| 6 |
+
"text": "string",
|
| 7 |
+
"dataset": "string"
|
| 8 |
+
},
|
| 9 |
+
"license": "mit",
|
| 10 |
+
"task": "retrieval"
|
| 11 |
+
}
|
documents.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"doc_id": "doc1", "text": "The Transformer architecture introduced self-attention to model dependencies without regard to distance.", "dataset": "wiki"}
|
| 2 |
+
{"doc_id": "doc2", "text": "Retrieval-Augmented Generation (RAG) enhances generation by retrieving documents relevant to the input query.", "dataset": "manual_curation"}
|
| 3 |
+
{"doc_id": "doc3", "text": "BERT is a transformer model pre-trained on a large corpus and fine-tuned for specific NLP tasks.", "dataset": "bert_paper"}
|