Loading forecast_app/smart_data_generator.py +1 −1 Original line number Diff line number Diff line Loading @@ -389,7 +389,7 @@ class SmartSupplyChainDataGenerator: demand = purchases[watch_id] # Production strategy: produce based on demand + safety stock production = int(demand * 1.05) production = int(demand * 1.05) # TODO : here maybe do a random value between .95 and 1.05 for noise ? # Calculate financials watch_data = self._calculate_costs_and_revenue( Loading Loading
forecast_app/smart_data_generator.py +1 −1 Original line number Diff line number Diff line Loading @@ -389,7 +389,7 @@ class SmartSupplyChainDataGenerator: demand = purchases[watch_id] # Production strategy: produce based on demand + safety stock production = int(demand * 1.05) production = int(demand * 1.05) # TODO : here maybe do a random value between .95 and 1.05 for noise ? # Calculate financials watch_data = self._calculate_costs_and_revenue( Loading