0x22almostEvil
Brrrr
9b4efa3
raw
history blame
748 Bytes
import pandas as pd
# list of all the csv files
csv_files = [
"en-wikihow-qa-dataset-1k.csv",
"ru-wikihow-qa-dataset-1k.csv",
"pt-wikihow-qa-dataset-1k.csv",
"nl-wikihow-qa-dataset-1k.csv",
"it-wikihow-qa-dataset-1k.csv",
"fr-wikihow-qa-dataset-1k.csv",
"es-wikihow-qa-dataset-1k.csv",
"de-wikihow-qa-dataset-1k.csv"
]
# create an empty dataframe to hold the merged data
merged_data = pd.DataFrame()
# loop through all the csv files, read them into dataframes, and merge them
for file in csv_files:
data = pd.read_csv(file)
merged_data = pd.concat([merged_data, data], ignore_index=True)
# write the merged data to a new csv file
merged_data.to_csv("multilingial-wikihow-qa-dataset-8k.csv", index=False)