generated from aaivu/aaivu-project-template
-
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.
feat: Add pipeline for running time (#54)
feat: Add pipeline for rt
- Loading branch information
1 parent
6c577a3
commit 67eafdf
Showing
187 changed files
with
514 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
from datetime import datetime | ||
|
||
from ibat.concept_drift_detector.strategies import DDM | ||
from ibat.datasets import BUS_654_FEATURES_ADDED_RUNNING_TIMES | ||
from ibat.pipeline import run_rt_exp | ||
|
||
|
||
def datetime_from_string(datetime_string: str) -> datetime: | ||
return datetime.strptime(datetime_string, "%Y-%m-%d") | ||
|
||
|
||
if __name__ == "__main__": | ||
running_time_df = BUS_654_FEATURES_ADDED_RUNNING_TIMES.dataframe | ||
running_time_df = running_time_df.dropna(subset=["start_time"]) | ||
running_time_df = running_time_df[running_time_df["direction"] == 1] | ||
running_time_df[["direction", "segment"]] = running_time_df[ | ||
["direction", "segment"] | ||
].astype(int) | ||
|
||
historical_data_starting_from = datetime_from_string("2021-10-01") | ||
historical_data_ending_at = datetime_from_string("2022-02-01") | ||
streaming_data_starting_from = datetime_from_string("2022-02-01") | ||
streaming_data_ending_at = datetime_from_string("2022-11-01") | ||
time_interval = 60 * 2 | ||
chunk_size = 100 | ||
active_strategy = True | ||
cdd_strategy = DDM( | ||
warning_level=0.1, | ||
drift_level=1.5, | ||
min_num_instances=1, | ||
) | ||
incremental_learning = True | ||
is_buffer_enabled = False | ||
folder_path_to_save_result = "../../experiments" | ||
experiment_label = "m-xgb-s-xgb_model" | ||
|
||
run_rt_exp( | ||
rt_df=running_time_df, | ||
hist_start=historical_data_starting_from, | ||
hist_end=historical_data_ending_at, | ||
stream_start=streaming_data_starting_from, | ||
stream_end=streaming_data_ending_at, | ||
interval_min=time_interval, | ||
chunk_size=chunk_size, | ||
active_strategy=active_strategy, | ||
cdd_strategy=cdd_strategy, | ||
incremental_learning=incremental_learning, | ||
is_buffer_enabled=is_buffer_enabled, | ||
output_parent_dir=folder_path_to_save_result, | ||
label=experiment_label, | ||
) |
35 changes: 35 additions & 0 deletions
35
experiments/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/README.md
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,35 @@ | ||
|
||
# Experiment: m-xgb-s-xgb_model | ||
|
||
## Parameters | ||
- Historical data starting from: 2021-10-01 00:00:00 | ||
- Historical data ending at: 2022-02-01 00:00:00 | ||
- Streaming data starting from: 2022-02-01 00:00:00 | ||
- Streaming data ending at: 2022-11-01 00:00:00 | ||
- Minimum waiting time: 120 minutes | ||
- Minimum required amount of data: 100 | ||
- Batch processing technique: HYBRID | ||
- Concept drift handling strategy: ACTIVE | ||
- Concept drift detection algorithm: DDM | ||
- Strategy to update the outdated model: INCREMENTAL LEARNING | ||
- Is buffer enabled: False | ||
- DDM: | ||
|
||
| Attribute | Value | | ||
|---|---| | ||
| Warning level factor | 0.1 | | ||
| Drift level factor | 1.5 | | ||
| Minimum numbers of instances/batches to start looking for changes | 1 | | ||
|
||
|
||
## Results | ||
- Model performance metrics: | ||
|
||
| Model | MAE (s) | RMSE (s) | MAPE (%) | | ||
|-------------------------------------------|----------------------|-----------------------|-----------------------| | ||
| Base model without concept drift handling | 38.827 | 63.670 | 0.284 | | ||
| Base model with concept drift handling | 36.461 | 59.327 | 0.242 | | ||
|
||
- Error reduction percentage in terms of MAE: 6.094 % | ||
- Average processing time after the batch preparation: 25.202 ms | ||
|
Binary file added
BIN
+235 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+182 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+236 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+172 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+193 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+162 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+147 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+285 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+255 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+219 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+198 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+225 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+251 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+254 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+243 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-06-00-00_07-00-00/9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+183 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+229 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+253 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+258 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+240 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+304 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+287 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+255 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+267 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+217 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+173 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+266 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+264 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+287 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+297 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-07-00-00_08-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+238 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+188 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+275 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+210 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+236 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+237 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+201 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+229 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+220 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+193 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+259 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+256 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+252 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+245 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+246 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-08-00-00_09-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+270 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+228 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+228 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+224 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+206 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+227 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+286 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+238 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+219 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+176 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+265 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+231 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+244 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+279 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+294 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-09-00-00_10-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+228 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+222 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+255 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+254 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+202 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+272 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+212 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+187 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+220 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+256 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+203 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+230 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+242 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+225 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+311 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-10-00-00_11-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+137 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+240 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+267 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+282 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+287 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+218 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+260 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+200 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+249 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+168 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+211 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+227 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+226 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+262 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+261 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-11-00-00_12-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+194 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+232 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+279 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+285 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+224 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+236 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+255 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+248 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+251 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+179 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+208 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+258 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+245 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+235 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+231 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-12-00-00_13-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+179 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+239 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+248 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+197 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+283 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+219 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+305 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+252 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+279 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+235 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+165 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+233 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+269 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+255 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+289 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-13-00-00_14-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+251 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+202 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+200 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+233 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+268 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+241 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+201 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+245 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+268 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+274 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+276 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+246 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+156 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+290 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+295 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-14-00-00_15-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+245 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+278 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+245 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+262 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+257 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+187 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+269 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+210 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+280 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+270 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+215 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+240 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+256 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+272 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+239 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-15-00-00_16-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+254 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+243 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+264 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+210 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+205 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+197 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+224 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+213 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+217 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+210 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+154 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+247 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+234 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+264 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+289 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-16-00-00_17-00-00/9.png
Oops, something went wrong.
Binary file added
BIN
+229 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/1.png
Oops, something went wrong.
Binary file added
BIN
+219 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/10.png
Oops, something went wrong.
Binary file added
BIN
+210 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/11.png
Oops, something went wrong.
Binary file added
BIN
+251 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/12.png
Oops, something went wrong.
Binary file added
BIN
+236 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/13.png
Oops, something went wrong.
Binary file added
BIN
+223 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/14.png
Oops, something went wrong.
Binary file added
BIN
+244 KB
...nts/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/15.png
Oops, something went wrong.
Binary file added
BIN
+205 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/2.png
Oops, something went wrong.
Binary file added
BIN
+224 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/3.png
Oops, something went wrong.
Binary file added
BIN
+256 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/4.png
Oops, something went wrong.
Binary file added
BIN
+233 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/5.png
Oops, something went wrong.
Binary file added
BIN
+251 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/6.png
Oops, something went wrong.
Binary file added
BIN
+197 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/7.png
Oops, something went wrong.
Binary file added
BIN
+253 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/8.png
Oops, something went wrong.
Binary file added
BIN
+228 KB
...ents/ex-m-xgb-s-xgb_model-2024-05-26_15-38-31/rt-d-1-ti-17-00-00_18-00-00/9.png
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from .dwell_time import run_dt_exp | ||
from .running_time import run_rt_exp |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.