-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed unnecessary experiments and cleaned up existing ones
- Loading branch information
Diandre Sabale
committed
Nov 13, 2023
1 parent
b125408
commit f9742e5
Showing
13 changed files
with
69 additions
and
276 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
Experiments/Scripts/run-summary-sampling-experiments-full-range.jl
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,14 @@ | ||
using Plots.PlotMeasures | ||
include("../build_color_summaries.jl") | ||
include("../get_true_cardinalities.jl") | ||
include("../load_datasets.jl") | ||
include("../load_querysets.jl") | ||
include("../run_estimators.jl") | ||
include("../graph_results.jl") | ||
include("../utils.jl") | ||
include("../Experiments.jl") | ||
|
||
# datasets::Vector{DATASET} = [aids, wordnet, lubm80, human] | ||
# max_partial_paths = 10000 | ||
|
||
# experiment_params_list::Vector{ExperimentParams} = [ExperimentParams(dataset=aids, partitioner=QuasiStable, inference_max_paths=2), | ||
# ExperimentParams(dataset=aids, partitioner=QuasiStable, inference_max_paths=10), | ||
# ExperimentParams(dataset=aids, partitioner=QuasiStable, inference_max_paths=50), | ||
# ExperimentParams(dataset=aids, partitioner=QuasiStable, inference_max_paths=250), | ||
# ExperimentParams(dataset=aids, partitioner=QuasiStable, inference_max_paths=1250)] | ||
|
||
# datasets::Vector{DATASET} = [aids, human, lubm80, yeast, hprd, wordnet, dblp, youtube, eu2005, patents] | ||
datasets::Vector{DATASET} = [aids] | ||
|
||
datasets::Vector{DATASET} = [aids, wordnet, lubm80, human] | ||
max_paths = 1000 | ||
experiment_params_list::Vector{ExperimentParams} = [ExperimentParams(dataset=current_dataset, partitioner=QuasiStable, summary_max_paths=current_paths) for current_dataset in datasets for current_paths in 0:200:max_paths] | ||
|
||
experiment_params_list::Vector{ExperimentParams} = [ExperimentParams(dataset=current_dataset, partitioner=QuasiStable, summary_max_paths=current_paths) for current_dataset in datasets for current_paths in 250:250:max_paths] | ||
println("started building") | ||
build_experiments(experiment_params_list) | ||
println("started estimating") | ||
run_estimation_experiments(experiment_params_list) | ||
|
||
println("started graphing") | ||
graph_grouped_box_plot(experiment_params_list, x_type=dataset, y_type=error, grouping=summary_paths, filename="summarysamples") |
24 changes: 0 additions & 24 deletions
24
Experiments/Scripts/run-summary-sampling-range-query-type.jl
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
Experiments/Scripts/run-summary-sampling-with-query-type.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Plots.PlotMeasures | ||
include("../Experiments.jl") | ||
|
||
current_dataset = yeast | ||
max_paths = 300 | ||
|
||
experiment_params_list::Vector{ExperimentParams} = [ExperimentParams(dataset=current_dataset, partitioner=QuasiStable, summary_max_paths=current_paths) for current_paths in 10:30:max_paths] | ||
println("started building") | ||
build_experiments(experiment_params_list) | ||
println("started estimating") | ||
run_estimation_experiments(experiment_params_list) | ||
println("started graphing") | ||
graph_grouped_box_plot(experiment_params_list, x_type=query_type, y_type=estimate_error, grouping=summary_paths, filename="summarysamplesquerytypesyeast") |
Oops, something went wrong.