Hi, there are several issues with the data_download.sh script in the xsp subfolder.
-
From the download for scholar data onwards, the wget commands are not valid. They need to be edited to remove the ''blob'' in the url.
Example:
Original: wget https://raw.githubusercontent.com/jkkummerfeld/text2sql-data/blob/master/data/scholar.json
Edited: wget https://raw.githubusercontent.com/jkkummerfeld/text2sql-data/master/data/scholar.json
-
The wget commands for downloading all the schemas are due to the above issue also. Using the provided wgets will give us an invalid xml file with no schema information
Hi, there are several issues with the
data_download.shscript in the xsp subfolder.From the download for scholar data onwards, the
wgetcommands are not valid. They need to be edited to remove the ''blob'' in the url.Example:
Original:
wget https://raw.githubusercontent.com/jkkummerfeld/text2sql-data/blob/master/data/scholar.jsonEdited:
wget https://raw.githubusercontent.com/jkkummerfeld/text2sql-data/master/data/scholar.jsonThe
wgetcommands for downloading all the schemas are due to the above issue also. Using the providedwgets will give us an invalid xml file with no schema information