ZahirJS commited on
Commit
b3c0c61
·
verified ·
1 Parent(s): 7a6c01d

Update sample_data.py

Browse files
Files changed (1) hide show
  1. sample_data.py +109 -3
sample_data.py CHANGED
@@ -165,7 +165,6 @@ CONCEPT_MAP_JSON = """
165
  }
166
  """
167
 
168
- # JSON for Synoptic Chart (horizontal hierarchy) - AI related, 4 levels
169
  SYNOPTIC_CHART_JSON = """
170
  {
171
  "central_node": "AI Project Lifecycle",
@@ -249,7 +248,6 @@ SYNOPTIC_CHART_JSON = """
249
  }
250
  """
251
 
252
- # JSON for Radial Diagram (central expansion) - AI related, 3 levels with 5->10 structure
253
  RADIAL_DIAGRAM_JSON = """
254
  {
255
  "central_node": "AI Core Concepts & Domains",
@@ -374,7 +372,6 @@ PROCESS_FLOW_JSON = """
374
  }
375
  """
376
 
377
- # New JSON for Work Breakdown Structure (WBS) Diagram - similar to image, but not identical
378
  WBS_DIAGRAM_JSON = """
379
  {
380
  "project_title": "AI Model Development Project",
@@ -476,3 +473,112 @@ WBS_DIAGRAM_JSON = """
476
  }
477
 
478
  """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  }
166
  """
167
 
 
168
  SYNOPTIC_CHART_JSON = """
169
  {
170
  "central_node": "AI Project Lifecycle",
 
248
  }
249
  """
250
 
 
251
  RADIAL_DIAGRAM_JSON = """
252
  {
253
  "central_node": "AI Core Concepts & Domains",
 
372
  }
373
  """
374
 
 
375
  WBS_DIAGRAM_JSON = """
376
  {
377
  "project_title": "AI Model Development Project",
 
473
  }
474
 
475
  """
476
+
477
+ TIMELINE_JSON = """
478
+ {
479
+ "title": "AI Development Timeline",
480
+ "events": [
481
+ {
482
+ "id": "event_1",
483
+ "label": "Machine Learning Foundations",
484
+ "date": "1950-1960",
485
+ "description": "Early neural networks and perceptrons"
486
+ },
487
+ {
488
+ "id": "event_2",
489
+ "label": "Expert Systems Era",
490
+ "date": "1970-1980",
491
+ "description": "Rule-based AI systems"
492
+ },
493
+ {
494
+ "id": "event_3",
495
+ "label": "Neural Network Revival",
496
+ "date": "1980-1990",
497
+ "description": "Backpropagation algorithm"
498
+ },
499
+ {
500
+ "id": "event_4",
501
+ "label": "Machine Learning Boom",
502
+ "date": "1990-2000",
503
+ "description": "Support Vector Machines, Random Forests"
504
+ },
505
+ {
506
+ "id": "event_5",
507
+ "label": "Deep Learning Revolution",
508
+ "date": "2010-2020",
509
+ "description": "CNNs, RNNs, and breakthrough applications"
510
+ },
511
+ {
512
+ "id": "event_6",
513
+ "label": "Transformer Era",
514
+ "date": "2020-Present",
515
+ "description": "GPT, BERT, and Large Language Models"
516
+ }
517
+ ]
518
+ }
519
+ """
520
+
521
+ BINARY_TREE_JSON = """
522
+ {
523
+ "root": {
524
+ "id": "root",
525
+ "label": "50",
526
+ "left": {
527
+ "id": "left_1",
528
+ "label": "30",
529
+ "left": {
530
+ "id": "left_2",
531
+ "label": "20",
532
+ "left": {
533
+ "id": "left_4",
534
+ "label": "10"
535
+ },
536
+ "right": {
537
+ "id": "right_4",
538
+ "label": "25"
539
+ }
540
+ },
541
+ "right": {
542
+ "id": "right_2",
543
+ "label": "40",
544
+ "left": {
545
+ "id": "left_5",
546
+ "label": "35"
547
+ },
548
+ "right": {
549
+ "id": "right_5",
550
+ "label": "45"
551
+ }
552
+ }
553
+ },
554
+ "right": {
555
+ "id": "right_1",
556
+ "label": "70",
557
+ "left": {
558
+ "id": "left_3",
559
+ "label": "60",
560
+ "left": {
561
+ "id": "left_6",
562
+ "label": "55"
563
+ },
564
+ "right": {
565
+ "id": "right_6",
566
+ "label": "65"
567
+ }
568
+ },
569
+ "right": {
570
+ "id": "right_3",
571
+ "label": "80",
572
+ "left": {
573
+ "id": "left_7",
574
+ "label": "75"
575
+ },
576
+ "right": {
577
+ "id": "right_7",
578
+ "label": "90"
579
+ }
580
+ }
581
+ }
582
+ }
583
+ }
584
+ """