Skip to content

Commit 7fd4655

Browse files
committed
Added 30K trained model LSTM
Signed-off-by: [ 大鳄 ] Asew <[email protected]>
1 parent 388fee3 commit 7fd4655

8 files changed

+350
-4
lines changed

data/algorithms/tile_by_tile_training_uniform_random_fill_30000_block_map_30000_house_30000_model/tile_by_tile_training_uniform_random_fill_30000_block_map_30000_house_30000_model_log.txt

Lines changed: 348 additions & 0 deletions
Large diffs are not rendered by default.

src/algorithms/algorithm_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def _static_init_(cls):
9393
OnlineLSTM, BasicTesting, ([], {"load_name": "caelstm_section_cae_training_house_100_model"})),
9494
"Online LSTM": (OnlineLSTM, BasicTesting, (
9595
[],
96-
{"load_name": "tile_by_tile_training_uniform_random_fill_3000_block_map_3000_house_3000_model"})),
96+
{"load_name": "tile_by_tile_training_uniform_random_fill_30000_block_map_30000_house_30000_model"})),
9797
"SPRM": (SPRM, BasicTesting, ([], {})),
9898
"RT": (RT, BasicTesting, ([], {})),
9999
"RRT": (RRT, BasicTesting, ([], {})),

src/algorithms/lstm/combined_online_LSTM.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ def __init__(self, services: Services, testing: BasicTesting = None, kernel_name
2828

2929
if not kernel_names:
3030
self.kernel_names = [
31-
"tile_by_tile_training_house_10_model",
32-
"tile_by_tile_training_house_100_model",
3331
"tile_by_tile_training_house_1000_model",
34-
"tile_by_tile_training_uniform_random_fill_1000_model",
3532
"tile_by_tile_training_uniform_random_fill_3000_block_map_3000_house_3000_model",
33+
"tile_by_tile_training_uniform_random_fill_30000_block_map_30000_house_30000_model",
3634
]
3735

3836
self._max_it = max_it

0 commit comments

Comments
 (0)