Update README on eliminating the CSV (#1)
Browse files- Update README on eliminating the CSV (40bdd87966d3cdfb1626f5ebf51eca3a0e635152)
Co-authored-by: Benjamin Carter <[email protected]>
README.md
CHANGED
|
@@ -1,24 +1,13 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
-
To export table data to a CSV file, use the sequence of SQLite commands below:
|
| 5 |
-
Ex: exporting Table nlbse_tool_competition_data_by_issue to a CSV file.
|
| 6 |
-
```
|
| 7 |
-
sqlite3 skillscope_data.db
|
| 8 |
-
.headers on
|
| 9 |
-
.mode csv
|
| 10 |
-
.output output.csv
|
| 11 |
-
SELECT * FROM nlbse_tool_competition_data_by_issue;
|
| 12 |
-
.quit
|
| 13 |
-
```
|
| 14 |
-
Important: CSV file will have zero bytes until you use the ```.quit``` statement !
|
| 15 |
|
|
|
|
| 16 |
|
| 17 |
-
Alternatively, you can simply call sqlite3 and check the available tables.
|
| 18 |
-
The statement ```.table``` will list the available tables.
|
| 19 |
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
.
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
+
# NLBSE 2026 Skill Competition Dataset
|
| 6 |
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
Refer to [the NLBSE 2026 Competition Announcement](https://nlbse2026.github.io/tools/#:~:text=the%20workshop%20proceedings.-,Skill%20Classification%20Competition,-Competition%20Overview) for more information about the NLBSE 2026 Skill Competition and this included dataset.
|
| 9 |
+
|
| 10 |
+
> Note, the previous version of this dataset contained a CSV file, which was simply an export of the `nlbse_tool_competition_data_by_issue` table of the SQLite file.
|
| 11 |
+
> However, it was reported that there were errors in the CSV file as several cells from the table contained newlines, quotes, and other special characters.
|
| 12 |
+
> Therefore, the CSV file was removed. It is now recommended to use SQLite queries against the SQLite file directly.
|
| 13 |
+
|