|
runtime, wp, ap = postgres_experiment(X, y, iterations=args.iterations, COO=True, parameter=parameter) |
|
results[features][samples]['p'] = runtime |
|
runtime, wpc, apc = postgres_experiment(X, y, iterations=args.iterations, COO=False, parameter=parameter) |
|
results[features][samples]['pc'] = runtime |
I am currently reading your paper and trying to reproduce the experiment that is mentioned in the paper.
I have a question about the code.
The line of code results[features][samples]['pc'] is used to store the results of the experiment. I am wondering if this is the result of the Postgres COO result. However, the code also has the line COO=False. I am not sure if this means that the results are not stored in the COO format.
Could you please clarify if results[features][samples]['pc'] is the result of the Postgres COO result? If not, could you please explain what format the results are stored in?
sql-algorithms/case_study/experiments/main.py
Lines 580 to 583 in 357cb16
I am currently reading your paper and trying to reproduce the experiment that is mentioned in the paper.
I have a question about the code.
The line of code
results[features][samples]['pc']is used to store the results of the experiment. I am wondering if this is the result of the Postgres COO result. However, the code also has the lineCOO=False. I am not sure if this means that the results are not stored in the COO format.Could you please clarify if
results[features][samples]['pc']is the result of the Postgres COO result? If not, could you please explain what format the results are stored in?