Updated data generation code

This commit is contained in:
2025-09-01 14:46:34 -04:00
parent d998f6de4c
commit e018238935
14 changed files with 709 additions and 123 deletions

View File

@@ -82,9 +82,9 @@ def main():
GRAPH_GEN_ALGOS = ["erdos_renyi", "barabasi_albert", "powerlaw_cluster", "watts_strogatz"]
AGENT_COUNTS = range(5, 51, 5) # 5, 10, ..., 50 agents
# AGENT_COUNTS = [50]
GRAPHS_PER_AGENT_COUNT = 100
GRAPHS_PER_AGENT_COUNT = 80
GRAPHS_PER_GRAPH_ALGO = GRAPHS_PER_AGENT_COUNT // len(GRAPH_GEN_ALGOS)
SIMS_PER_GRAPH = 100
SIMS_PER_GRAPH = 400
OUTPUT_DIR = "datasets/kuramoto_dataset"
# --- Setup ---