gitextract__y7m6kto/ ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── demo/ │ ├── analysis.py │ ├── causal_analysis.py │ ├── comparison/ │ │ ├── analysis_hypervolume.py │ │ ├── analysis_plot.py │ │ ├── experiment_gcc.py │ │ ├── experiment_llvm.py │ │ ├── features_by_workload_gcc.json │ │ ├── features_by_workload_gcc_extra.json │ │ ├── features_by_workload_llvm.json │ │ ├── plot.py │ │ ├── plot_samples_dbms.py │ │ └── start_server.py │ ├── correlation_analysis.py │ ├── experiment_lsh_validity.py │ ├── experiments.py │ ├── importances/ │ │ ├── cal_relationship.py │ │ ├── draw_obj_heatmap.py │ │ └── get_feature_importances.py │ ├── jacard_exec_times.csv │ ├── lsh_exec_times.csv │ ├── optimize_profile.prof │ ├── random_sample_compiler.py │ ├── random_sample_dbms.py │ └── sampling/ │ ├── random_sample_compiler.py │ └── random_sample_dbms.py ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── _static/ │ │ └── custom.css │ ├── conf.py │ ├── development/ │ │ ├── api_reference.rst │ │ └── architecture.rst │ ├── faq.rst │ ├── home/ │ │ ├── feature.html │ │ ├── guide.html │ │ └── portfolio.html │ ├── index.rst │ ├── installation.rst │ ├── quickstart.rst │ └── usage/ │ ├── TOS.bib │ ├── algorithms.rst │ ├── cli.rst │ ├── data_manage.rst │ ├── problems.rst │ ├── results.rst │ └── visualization.rst ├── extra_requirements/ │ ├── analysis.json │ └── remote.json ├── requirements.txt ├── resources/ │ └── docker/ │ └── absolut_image/ │ ├── Dockerfile │ └── prepare_antigen.sh ├── scripts/ │ ├── init_csstuning.sh │ └── init_docker.sh ├── setup.py ├── tests/ │ ├── EXP_NSGA2.py │ ├── EXP_NSGA2_restart.py │ ├── EXP_bohb.py │ ├── EXP_grid.py │ ├── EXP_hebo.py │ ├── EXP_hyperopt.py │ ├── EXP_random.py │ ├── EXP_smac.py │ ├── EXP_tpe.py │ └── data_analysis.py ├── transopt/ │ ├── ResultAnalysis/ │ │ ├── AnalysisBase.py │ │ ├── AnalysisPipeline.py │ │ ├── AnalysisReport.py │ │ ├── CasualAnalysis.py │ │ ├── CompileTex.py │ │ ├── CorrelationAnalysis.py │ │ ├── MakeGif.py │ │ ├── PFAnalysis.py │ │ ├── PlotAnalysis.py │ │ ├── ReportNote.py │ │ ├── TableAnalysis.py │ │ ├── TableToLatex.py │ │ ├── TrackOptimization.py │ │ └── __init__.py │ ├── __init__.py │ ├── agent/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── chat/ │ │ │ ├── openai_chat.py │ │ │ ├── prompt │ │ │ ├── prompt.bak │ │ │ └── yaml_generator.py │ │ ├── config.py │ │ ├── registry.py │ │ ├── run_cli.py │ │ ├── services.py │ │ └── testood.py │ ├── analysis/ │ │ ├── compile_tex.py │ │ ├── effect_size.py │ │ ├── mds.py │ │ ├── parameter_network.py │ │ ├── table.py │ │ └── table_to_latex.py │ ├── benchmark/ │ │ ├── CPD/ │ │ │ └── __init__.py │ │ ├── CSSTuning/ │ │ │ ├── Compiler.py │ │ │ ├── DBMS.py │ │ │ └── __init__.py │ │ ├── DownloadBench/ │ │ │ └── references │ │ ├── HBOROB/ │ │ │ ├── algorithms.py │ │ │ ├── hporobust.py │ │ │ └── test.py │ │ ├── HPO/ │ │ │ ├── HPO.py │ │ │ ├── HPOAdaBoost.py │ │ │ ├── HPOSVM.py │ │ │ ├── HPOXGBoost.py │ │ │ ├── __init__.py │ │ │ ├── algorithms.py │ │ │ ├── augmentation.py │ │ │ ├── datasets.py │ │ │ ├── fast_data_loader.py │ │ │ ├── hparams_registry.py │ │ │ ├── image_options.py │ │ │ ├── misc.py │ │ │ ├── networks.py │ │ │ ├── test_model.py │ │ │ ├── visualization.py │ │ │ └── wide_resnet.py │ │ ├── HPOB/ │ │ │ ├── HpobBench.py │ │ │ └── plot.py │ │ ├── HPOOOD/ │ │ │ ├── algorithms.py │ │ │ ├── collect_results.py │ │ │ ├── download.py │ │ │ ├── fast_data_loader.py │ │ │ ├── hparams_registry.py │ │ │ ├── hpoood.py │ │ │ ├── misc.py │ │ │ ├── networks.py │ │ │ ├── ooddatasets.py │ │ │ └── wide_resnet.py │ │ ├── RL/ │ │ │ ├── LunarlanderBenchmark.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── instantiate_problems.py │ │ ├── problem_base/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── non_tab_problem.py │ │ │ ├── tab_problem.py │ │ │ └── transfer_problem.py │ │ └── synthetic/ │ │ ├── MovingPeakBenchmark.py │ │ ├── MultiObjBenchmark.py │ │ ├── __init__.py │ │ └── synthetic_problems.py │ ├── datamanager/ │ │ ├── __init__.py │ │ ├── database.py │ │ ├── lsh.py │ │ ├── manager.py │ │ └── minhash.py │ ├── optimizer/ │ │ ├── MultiObjOptimizer/ │ │ │ ├── CauMOpt.py │ │ │ ├── IEIPV.py │ │ │ ├── MoeadEGO.py │ │ │ ├── ParEGO.py │ │ │ ├── SMSEGO.py │ │ │ └── __init__.py │ │ ├── SingleObjOptimizer/ │ │ │ ├── KrigingOptimizer.py │ │ │ ├── LFL.py │ │ │ ├── MetaLearningOptimizer.py │ │ │ ├── MultitaskOptimizer.py │ │ │ ├── PROptimizer.py │ │ │ ├── RBFNOptimizer.py │ │ │ ├── RGPEOptimizer.py │ │ │ ├── TPEOptimizer.py │ │ │ ├── VizerOptimizer.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── acquisition_function/ │ │ │ ├── ConformalLCB.py │ │ │ ├── __init__.py │ │ │ ├── acf_base.py │ │ │ ├── ei.py │ │ │ ├── get_acf.py │ │ │ ├── lcb.py │ │ │ ├── model_manage/ │ │ │ │ ├── CMAESBest.py │ │ │ │ ├── CMAESGeneration.py │ │ │ │ ├── CMAESPreSelect.py │ │ │ │ ├── DEBest.py │ │ │ │ ├── DEGeneration.py │ │ │ │ ├── DEPreSelect.py │ │ │ │ ├── GABest.py │ │ │ │ ├── GAGeneration.py │ │ │ │ ├── GAPreSelect.py │ │ │ │ ├── PSOBest.py │ │ │ │ ├── PSOGeneration.py │ │ │ │ └── PSOPreSelect.py │ │ │ ├── moeadego.py │ │ │ ├── pi.py │ │ │ ├── piei.py │ │ │ ├── sequential.py │ │ │ ├── smsego.py │ │ │ └── taf.py │ │ ├── construct_optimizer.py │ │ ├── model/ │ │ │ ├── HyperBO.py │ │ │ ├── __init__.py │ │ │ ├── bohb.py │ │ │ ├── deepkernel.py │ │ │ ├── dyhpo.py │ │ │ ├── get_model.py │ │ │ ├── gp.py │ │ │ ├── hebo.py │ │ │ ├── mhgp.py │ │ │ ├── mlp.py │ │ │ ├── model_base.py │ │ │ ├── moeadego.py │ │ │ ├── mtgp.py │ │ │ ├── neuralprocess.py │ │ │ ├── parego.py │ │ │ ├── pr.py │ │ │ ├── rbfn.py │ │ │ ├── rf.py │ │ │ ├── rgpe.py │ │ │ ├── sgpt.py │ │ │ ├── smsego.py │ │ │ └── utils.py │ │ ├── normalizer/ │ │ │ ├── __init__.py │ │ │ ├── normalizer_base.py │ │ │ └── standerd.py │ │ ├── optimizer_base/ │ │ │ ├── EvoOptimizerBase.py │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── bo.py │ │ ├── pretrain/ │ │ │ ├── __init__.py │ │ │ ├── deepkernelpretrain.py │ │ │ ├── get_pretrain.py │ │ │ ├── hyper_bo.py │ │ │ └── pretrain_base.py │ │ ├── refiner/ │ │ │ ├── __init__.py │ │ │ ├── box.py │ │ │ ├── ellipse.py │ │ │ ├── get_refiner.py │ │ │ ├── prune.py │ │ │ └── refiner_base.py │ │ ├── sampler/ │ │ │ ├── __init__.py │ │ │ ├── get_sampler.py │ │ │ ├── gradient.py │ │ │ ├── grid.py │ │ │ ├── lhs.py │ │ │ ├── lhs_BAK.py │ │ │ ├── meta.py │ │ │ ├── random.py │ │ │ ├── sampler_base.py │ │ │ └── sobel.py │ │ └── selector/ │ │ ├── __init__.py │ │ ├── fuzzy_selector.py │ │ ├── lsh_selector.py │ │ └── selector_base.py │ ├── remote/ │ │ ├── __init__.py │ │ ├── celeryconfig.py │ │ ├── experiment_client.py │ │ ├── experiment_server.py │ │ ├── experiment_tasks.py │ │ └── server_manager.sh │ ├── space/ │ │ ├── __init__.py │ │ ├── fidelity_space.py │ │ ├── search_space.py │ │ └── variable.py │ └── utils/ │ ├── Initialization.py │ ├── Kernel.py │ ├── Normalization.py │ ├── Prior.py │ ├── Read.py │ ├── Visualization.py │ ├── __init__.py │ ├── check.py │ ├── encoding.py │ ├── hypervolume.py │ ├── log.py │ ├── openml_data_manager.py │ ├── pareto.py │ ├── path.py │ ├── plot.py │ ├── profile.py │ ├── rng_helper.py │ ├── serialization.py │ ├── sk.py │ └── weights.py └── webui/ ├── .gitignore ├── LICENSE.md ├── package.json ├── public/ │ ├── index.html │ ├── manifest.json │ ├── robots.txt │ └── transopt.psd ├── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── app/ │ │ ├── auth.js │ │ ├── init.js │ │ └── store.js │ ├── components/ │ │ ├── CalendarView/ │ │ │ ├── index.js │ │ │ └── util.js │ │ ├── Cards/ │ │ │ └── TitleCard.js │ │ ├── Input/ │ │ │ ├── InputText.js │ │ │ ├── SearchBar.js │ │ │ ├── SelectBox.js │ │ │ ├── TextAreaInput.js │ │ │ └── ToogleInput.js │ │ └── Typography/ │ │ ├── ErrorText.js │ │ ├── HelperText.js │ │ ├── Subtitle.js │ │ └── Title.js │ ├── containers/ │ │ ├── Header.js │ │ ├── Layout.js │ │ ├── LeftSidebar.js │ │ ├── ModalLayout.js │ │ ├── PageContent.js │ │ ├── RightSidebar.js │ │ ├── SidebarSubmenu.js │ │ └── SuspenseContent.js │ ├── features/ │ │ ├── algorithm/ │ │ │ ├── components/ │ │ │ │ ├── OptTable.js │ │ │ │ └── SelectPlugin.js │ │ │ └── index.js │ │ ├── analytics/ │ │ │ ├── charts/ │ │ │ │ ├── Box.js │ │ │ │ ├── Trajectory.js │ │ │ │ └── my_theme.json │ │ │ ├── components/ │ │ │ │ ├── LineChart.js │ │ │ │ └── SelectTask.js │ │ │ └── index.js │ │ ├── calendar/ │ │ │ ├── CalendarEventsBodyRightDrawer.js │ │ │ └── index.js │ │ ├── charts/ │ │ │ ├── components/ │ │ │ │ ├── BarChart.js │ │ │ │ ├── DoughnutChart.js │ │ │ │ ├── LineChart.js │ │ │ │ ├── PieChart.js │ │ │ │ ├── ScatterChart.js │ │ │ │ └── StackBarChart.js │ │ │ └── index.js │ │ ├── chatbot/ │ │ │ ├── ChatBot.js │ │ │ └── components/ │ │ │ ├── ChatUI.js │ │ │ └── chatui-theme.css │ │ ├── common/ │ │ │ ├── components/ │ │ │ │ ├── ConfirmationModalBody.js │ │ │ │ └── NotificationBodyRightDrawer.js │ │ │ ├── headerSlice.js │ │ │ ├── modalSlice.js │ │ │ └── rightDrawerSlice.js │ │ ├── dashboard/ │ │ │ ├── components/ │ │ │ │ ├── AmountStats.js │ │ │ │ ├── BarChart.js │ │ │ │ ├── DashboardStats.js │ │ │ │ ├── DashboardTopBar.js │ │ │ │ ├── DoughnutChart.js │ │ │ │ ├── Footprint.js │ │ │ │ ├── Importance.js │ │ │ │ ├── LineChart.js │ │ │ │ ├── PageStats.js │ │ │ │ ├── ScatterChart.js │ │ │ │ ├── Trajectory.js │ │ │ │ ├── UserChannels.js │ │ │ │ └── my_theme.json │ │ │ └── index.js │ │ ├── documentation/ │ │ │ ├── DocComponents.js │ │ │ ├── DocFeatures.js │ │ │ ├── DocGettingStarted.js │ │ │ └── components/ │ │ │ ├── DocComponentsContent.js │ │ │ ├── DocComponentsNav.js │ │ │ ├── FeaturesContent.js │ │ │ ├── FeaturesNav.js │ │ │ ├── GettingStartedContent.js │ │ │ └── GettingStartedNav.js │ │ ├── experiment/ │ │ │ ├── components/ │ │ │ │ ├── DashboardStats.js │ │ │ │ ├── SearchData.js │ │ │ │ ├── SelectAlgorithm.js │ │ │ │ ├── SelectData.js │ │ │ │ └── SelectTask.js │ │ │ └── index.js │ │ ├── integration/ │ │ │ └── index.js │ │ ├── leads/ │ │ │ ├── components/ │ │ │ │ └── AddLeadModalBody.js │ │ │ ├── index.js │ │ │ └── leadSlice.js │ │ ├── run/ │ │ │ ├── components/ │ │ │ │ ├── DataTable.js │ │ │ │ ├── OptTable.js │ │ │ │ ├── Run.js │ │ │ │ ├── RunProgress.js │ │ │ │ └── TaskTable.js │ │ │ └── index.js │ │ ├── seldata/ │ │ │ ├── components/ │ │ │ │ ├── DataTable.js │ │ │ │ ├── SearchData.js │ │ │ │ ├── SelectData.css │ │ │ │ └── SelectData.js │ │ │ └── index.js │ │ ├── settings/ │ │ │ ├── billing/ │ │ │ │ └── index.js │ │ │ ├── profilesettings/ │ │ │ │ └── index.js │ │ │ └── team/ │ │ │ └── index.js │ │ ├── transactions/ │ │ │ └── index.js │ │ └── user/ │ │ ├── ForgotPassword.js │ │ ├── LandingIntro.js │ │ ├── Login.js │ │ ├── Register.js │ │ └── components/ │ │ └── TemplatePointers.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── GettingStarted.js │ │ └── protected/ │ │ ├── 404.js │ │ ├── Algorithm.js │ │ ├── Analytics.js │ │ ├── Bills.js │ │ ├── Blank.js │ │ ├── Calendar.js │ │ ├── Charts.js │ │ ├── ChatOpt.js │ │ ├── Dashboard.js │ │ ├── Experiment.js │ │ ├── Integration.js │ │ ├── Leads.js │ │ ├── ProfileSettings.js │ │ ├── Run.js │ │ ├── Seldata.js │ │ ├── Team.js │ │ ├── Transactions.js │ │ └── Welcome.js │ ├── reportWebVitals.js │ ├── routes/ │ │ ├── index.js │ │ └── sidebar.js │ ├── setupTests.js │ └── utils/ │ ├── dummyData.js │ └── globalConstantUtil.js └── tailwind.config.js