Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/hello_world/supply_chain/hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from examples.supply_chain.common.balance_calculator import BalanceSheetCalculator

env = Env(scenario="supply_chain", topology="walmart", start_tick=0, durations=100)
env = Env(scenario="supply_chain", topology="super_vendor", start_tick=0, durations=100)

balance_calculator = BalanceSheetCalculator(env=env)

Expand Down
2 changes: 1 addition & 1 deletion examples/supply_chain/rl/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_vlt_buffer_factor(entity: SupplyChainEntity, facility_info: FacilityInfo
"forecaster": "OracleForecaster",
# Oracle file, start_date_time and durations are only needed in OracleForecaster
# All files with suffix csv, tsv and xlsx without preprocessed will be loaded.
"oracle_file_dir": "maro/simulator/scenarios/supply_chain/topologies/walmart_3_layers/data",
"oracle_file_dir": "maro/simulator/scenarios/supply_chain/topologies/Plant_Warehouse_Store_SKU10/data",
"history_len": np.inf, # E.g., mapping to np.inf in instance creation if it is static
"future_len": np.inf,
"update_frequency": np.inf, # E.g., mapping to np.inf in instance creation if no update
Expand Down
Loading