diff --git a/simulator/src/features_loader.py b/simulator/src/features_loader.py index 5cfb3872..d849c8a8 100644 --- a/simulator/src/features_loader.py +++ b/simulator/src/features_loader.py @@ -18,7 +18,6 @@ def __init__(self, data_loader, features_stat): self.node_location_map = [i for i in range(total_nodes)] if "feature_layout" in features_stat and features_stat["feature_layout"] == "random": random.shuffle(self.node_location_map) - print(self.node_location_map[:10]) def get_node_page(self, node_id): node_location = self.node_location_map[node_id]