Update README.md
Browse filesAddress Correction
README.md
CHANGED
@@ -89,11 +89,11 @@ import json
|
|
89 |
import random
|
90 |
|
91 |
# Load the CSV dataset
|
92 |
-
csv_file = "
|
93 |
df = pd.read_csv(csv_file)
|
94 |
|
95 |
# Convert CSV data to JSON format
|
96 |
-
json_file = "
|
97 |
data = df.to_dict(orient="records")
|
98 |
|
99 |
# Save the data as a JSON file
|
|
|
89 |
import random
|
90 |
|
91 |
# Load the CSV dataset
|
92 |
+
csv_file = "qa_dataset.csv"
|
93 |
df = pd.read_csv(csv_file)
|
94 |
|
95 |
# Convert CSV data to JSON format
|
96 |
+
json_file = "qa_dataset.json"
|
97 |
data = df.to_dict(orient="records")
|
98 |
|
99 |
# Save the data as a JSON file
|