Commit 358d8931 authored by Barthelet Thibault's avatar Barthelet Thibault
Browse files

Merge branch 'master' into claude/align-sim-data-generator-01HUQacsiojn3J1Kan2yE7Nw

parents 52b88544 2e5364bb
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -174,11 +174,11 @@ class SupplyChainSimulation:
            for month in range(self.config.get('n_months', 12)):
                # Simple prediction based on category
                if watch.category == 'luxury':
                    base = 5
                    base = 200
                elif watch.category == 'sport':
                    base = 15
                    base = 200
                else:  # casual
                    base = 25
                    base = 200
                
                # Add some variation
                prediction = base + np.random.normal(0, 3)