xia01ongLi commited on
Commit
1cf66d0
·
verified ·
1 Parent(s): 92928b2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -3
README.md CHANGED
@@ -1,3 +1,19 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ ---
4
+
5
+ # DS-CodeBridge
6
+
7
+ A robust benchmark comprising **800** carefully curated bidirectionally translatable tasks across three important stages of data science workflows: **Data Querying**, **Data Manipulation**, and **Data Mining**.
8
+
9
+ # Download the Dataset
10
+
11
+
12
+ # Postgresql Setup
13
+ * Download and install the postgresql from the official website: https://www.postgresql.org/download/
14
+ * Download the pgAdmin4 from the official website: https://www.pgadmin.org/download/ (Recommended to monitor the database)
15
+ * In pgADmin4/terminal create a new database you prefer
16
+ * Construct the database by run the following command (You can find PostgreSQL & Pandas version database in the data folder):
17
+ ```bash
18
+ psql -U USERNAME -d DB_NAME -f postgresql_db.sql
19
+ ```