Update README.md
Browse files
README.md
CHANGED
@@ -51,11 +51,10 @@ The dataset is stored in **JSONL** format with the following structure:
|
|
51 |
|
52 |
```json
|
53 |
{
|
54 |
-
"query": "What is the interest rate for savings accounts?",
|
55 |
"document_text": "... The standard interest rate for savings accounts is 2.5% ...",
|
56 |
"document_page": 5,
|
|
|
57 |
"document_image": "path/to/image.jpg",
|
58 |
-
"answer": "2.5%"
|
59 |
}
|
60 |
```
|
61 |
|
@@ -68,7 +67,6 @@ dataset = load_dataset("YourProfile/banque_vision")
|
|
68 |
# Example
|
69 |
sample = dataset["train"][0]
|
70 |
print("Query:", sample["query"])
|
71 |
-
print("Answer:", sample["answer"])
|
72 |
```
|
73 |
|
74 |
## 🌍 Why It Matters
|
|
|
51 |
|
52 |
```json
|
53 |
{
|
|
|
54 |
"document_text": "... The standard interest rate for savings accounts is 2.5% ...",
|
55 |
"document_page": 5,
|
56 |
+
"query": "What is the interest rate for savings accounts?",
|
57 |
"document_image": "path/to/image.jpg",
|
|
|
58 |
}
|
59 |
```
|
60 |
|
|
|
67 |
# Example
|
68 |
sample = dataset["train"][0]
|
69 |
print("Query:", sample["query"])
|
|
|
70 |
```
|
71 |
|
72 |
## 🌍 Why It Matters
|