-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelations.json
More file actions
1242 lines (1242 loc) · 46.5 KB
/
Copy pathrelations.json
File metadata and controls
1242 lines (1242 loc) · 46.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"from_id": "A1",
"to_id": "A2",
"from_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"to_text": "Robotics clubs provide structure for educators without extensive experience.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A1",
"to_id": "A3",
"from_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"to_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A1",
"to_id": "A4",
"from_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"to_text": "It is advisable to stick with programming for a computer science club, as it can be done easily on laptops.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A1",
"to_id": "A9",
"from_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"to_text": "Robotics programs are an effective way to introduce students to computer science and engineering.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A1",
"to_id": "A10",
"from_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A2",
"to_id": "A1",
"from_text": "Robotics clubs provide structure for educators without extensive experience.",
"to_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A3",
"to_id": "A1",
"from_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"to_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A3",
"to_id": "A4",
"from_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"to_text": "It is advisable to stick with programming for a computer science club, as it can be done easily on laptops.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A3",
"to_id": "A5",
"from_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"to_text": "Gaining knowledge on the hardware side is a main challenge in robotics clubs.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A3",
"to_id": "A8",
"from_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"to_text": "Most robotics programs are funded by local companies, so out-of-pocket expenses are not a concern.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A4",
"to_id": "A1",
"from_text": "It is advisable to stick with programming for a computer science club, as it can be done easily on laptops.",
"to_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A4",
"to_id": "A3",
"from_text": "It is advisable to stick with programming for a computer science club, as it can be done easily on laptops.",
"to_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A4",
"to_id": "A10",
"from_text": "It is advisable to stick with programming for a computer science club, as it can be done easily on laptops.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "attacks",
"strength": 0.7
},
{
"from_id": "A5",
"to_id": "A3",
"from_text": "Gaining knowledge on the hardware side is a main challenge in robotics clubs.",
"to_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A5",
"to_id": "A6",
"from_text": "Gaining knowledge on the hardware side is a main challenge in robotics clubs.",
"to_text": "Robotics is very focused on hardware.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A5",
"to_id": "A7",
"from_text": "Gaining knowledge on the hardware side is a main challenge in robotics clubs.",
"to_text": "Software is not the paramount focus of robotics.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A6",
"to_id": "A5",
"from_text": "Robotics is very focused on hardware.",
"to_text": "Gaining knowledge on the hardware side is a main challenge in robotics clubs.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A6",
"to_id": "A7",
"from_text": "Robotics is very focused on hardware.",
"to_text": "Software is not the paramount focus of robotics.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A7",
"to_id": "A5",
"from_text": "Software is not the paramount focus of robotics.",
"to_text": "Gaining knowledge on the hardware side is a main challenge in robotics clubs.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A7",
"to_id": "A6",
"from_text": "Software is not the paramount focus of robotics.",
"to_text": "Robotics is very focused on hardware.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A7",
"to_id": "A10",
"from_text": "Software is not the paramount focus of robotics.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "attacks",
"strength": 0.4
},
{
"from_id": "A8",
"to_id": "A3",
"from_text": "Most robotics programs are funded by local companies, so out-of-pocket expenses are not a concern.",
"to_text": "Robotics clubs require hardware or funding for hardware, which can be difficult for high school students to acquire.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A9",
"to_id": "A1",
"from_text": "Robotics programs are an effective way to introduce students to computer science and engineering.",
"to_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A9",
"to_id": "A10",
"from_text": "Robotics programs are an effective way to introduce students to computer science and engineering.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A10",
"to_id": "A1",
"from_text": "A robotics club has significant advantages even for students interested in coding.",
"to_text": "Robotics clubs are a good avenue for introducing computer science to students.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A10",
"to_id": "A4",
"from_text": "A robotics club has significant advantages even for students interested in coding.",
"to_text": "It is advisable to stick with programming for a computer science club, as it can be done easily on laptops.",
"type": "attacks",
"strength": 0.7
},
{
"from_id": "A10",
"to_id": "A7",
"from_text": "A robotics club has significant advantages even for students interested in coding.",
"to_text": "Software is not the paramount focus of robotics.",
"type": "attacks",
"strength": 0.4
},
{
"from_id": "A10",
"to_id": "A9",
"from_text": "A robotics club has significant advantages even for students interested in coding.",
"to_text": "Robotics programs are an effective way to introduce students to computer science and engineering.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A10",
"to_id": "A11",
"from_text": "A robotics club has significant advantages even for students interested in coding.",
"to_text": "Robotics exposes students to other disciplines and how coding interacts with them.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A10",
"to_id": "A12",
"from_text": "A robotics club has significant advantages even for students interested in coding.",
"to_text": "Robotics opens up students to electronics, mechanics, and their interoperation with coding.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A11",
"to_id": "A10",
"from_text": "Robotics exposes students to other disciplines and how coding interacts with them.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A11",
"to_id": "A12",
"from_text": "Robotics exposes students to other disciplines and how coding interacts with them.",
"to_text": "Robotics opens up students to electronics, mechanics, and their interoperation with coding.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A12",
"to_id": "A10",
"from_text": "Robotics opens up students to electronics, mechanics, and their interoperation with coding.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A12",
"to_id": "A11",
"from_text": "Robotics opens up students to electronics, mechanics, and their interoperation with coding.",
"to_text": "Robotics exposes students to other disciplines and how coding interacts with them.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A13",
"to_id": "A10",
"from_text": "Pre-college schooling should expose students to creating hands-on.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A13",
"to_id": "A14",
"from_text": "Pre-college schooling should expose students to creating hands-on.",
"to_text": "The development of using hands and body to make something is important.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A13",
"to_id": "A15",
"from_text": "Pre-college schooling should expose students to creating hands-on.",
"to_text": "Robotics, 3D printing, and similar activities are not a substitute for learning how materials like wood, paint, or metal behave under human direction.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A14",
"to_id": "A13",
"from_text": "The development of using hands and body to make something is important.",
"to_text": "Pre-college schooling should expose students to creating hands-on.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A14",
"to_id": "A15",
"from_text": "The development of using hands and body to make something is important.",
"to_text": "Robotics, 3D printing, and similar activities are not a substitute for learning how materials like wood, paint, or metal behave under human direction.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A15",
"to_id": "A10",
"from_text": "Robotics, 3D printing, and similar activities are not a substitute for learning how materials like wood, paint, or metal behave under human direction.",
"to_text": "A robotics club has significant advantages even for students interested in coding.",
"type": "attacks",
"strength": 0.4
},
{
"from_id": "A15",
"to_id": "A13",
"from_text": "Robotics, 3D printing, and similar activities are not a substitute for learning how materials like wood, paint, or metal behave under human direction.",
"to_text": "Pre-college schooling should expose students to creating hands-on.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A15",
"to_id": "A14",
"from_text": "Robotics, 3D printing, and similar activities are not a substitute for learning how materials like wood, paint, or metal behave under human direction.",
"to_text": "The development of using hands and body to make something is important.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A16",
"to_id": "A22",
"from_text": "A highly focused club like a computer club at the high school level may not benefit students.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A16",
"to_id": "A30",
"from_text": "A highly focused club like a computer club at the high school level may not benefit students.",
"to_text": "A computer club is unlikely to attract many students.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A17",
"to_id": "A16",
"from_text": "Students tend to lose interest in computing when they perceive it as primarily mathematics.",
"to_text": "A highly focused club like a computer club at the high school level may not benefit students.",
"type": "supports",
"strength": 0.4
},
{
"from_id": "A17",
"to_id": "A22",
"from_text": "Students tend to lose interest in computing when they perceive it as primarily mathematics.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "attacks",
"strength": 0.4
},
{
"from_id": "A18",
"to_id": "A19",
"from_text": "Computer Science and coding are not the same thing, though they do overlap.",
"to_text": "Programming is not a method used to solve algorithms; it can limit the ability to develop algorithms.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A18",
"to_id": "A20",
"from_text": "Computer Science and coding are not the same thing, though they do overlap.",
"to_text": "Programming in computer science is a means to an end, similar to using symbols in mathematics.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A19",
"to_id": "A20",
"from_text": "Programming is not a method used to solve algorithms; it can limit the ability to develop algorithms.",
"to_text": "Programming in computer science is a means to an end, similar to using symbols in mathematics.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A19",
"to_id": "A21",
"from_text": "Programming is not a method used to solve algorithms; it can limit the ability to develop algorithms.",
"to_text": "Algorithms often have to change to fit the capabilities of programming languages.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A20",
"to_id": "A19",
"from_text": "Programming in computer science is a means to an end, similar to using symbols in mathematics.",
"to_text": "Programming is not a method used to solve algorithms; it can limit the ability to develop algorithms.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A21",
"to_id": "A19",
"from_text": "Algorithms often have to change to fit the capabilities of programming languages.",
"to_text": "Programming is not a method used to solve algorithms; it can limit the ability to develop algorithms.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A22",
"to_id": "A16",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "A highly focused club like a computer club at the high school level may not benefit students.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A22",
"to_id": "A17",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "Students tend to lose interest in computing when they perceive it as primarily mathematics.",
"type": "supports",
"strength": 0.3
},
{
"from_id": "A22",
"to_id": "A23",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "Web development is a recommended starting point for a computer science club.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A22",
"to_id": "A24",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "Most people who join a computer science club will want to make games.",
"type": "supports",
"strength": 0.5
},
{
"from_id": "A22",
"to_id": "A26",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "Creating a portfolio site while learning web development is a good approach.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A22",
"to_id": "A29",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "A competition-based club can attract a decent amount of students.",
"type": "supports",
"strength": 0.4
},
{
"from_id": "A22",
"to_id": "A30",
"from_text": "Starting a coding club in high school is a good idea.",
"to_text": "A computer club is unlikely to attract many students.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A23",
"to_id": "A22",
"from_text": "Web development is a recommended starting point for a computer science club.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A23",
"to_id": "A26",
"from_text": "Web development is a recommended starting point for a computer science club.",
"to_text": "Creating a portfolio site while learning web development is a good approach.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A24",
"to_id": "A22",
"from_text": "Most people who join a computer science club will want to make games.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "supports",
"strength": 0.5
},
{
"from_id": "A24",
"to_id": "A25",
"from_text": "Most people who join a computer science club will want to make games.",
"to_text": "Godot is highly recommended for game development due to its ease of use for 2D games.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A25",
"to_id": "A24",
"from_text": "Godot is highly recommended for game development due to its ease of use for 2D games.",
"to_text": "Most people who join a computer science club will want to make games.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A26",
"to_id": "A22",
"from_text": "Creating a portfolio site while learning web development is a good approach.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A26",
"to_id": "A23",
"from_text": "Creating a portfolio site while learning web development is a good approach.",
"to_text": "Web development is a recommended starting point for a computer science club.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A26",
"to_id": "A27",
"from_text": "Creating a portfolio site while learning web development is a good approach.",
"to_text": "Connecting a website to the internet is not a necessary step for learning but can be beneficial for college or job applications.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A27",
"to_id": "A26",
"from_text": "Connecting a website to the internet is not a necessary step for learning but can be beneficial for college or job applications.",
"to_text": "Creating a portfolio site while learning web development is a good approach.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A28",
"to_id": "A22",
"from_text": "Setting up a Java environment in a computer lab can be challenging.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "attacks",
"strength": 0.3
},
{
"from_id": "A29",
"to_id": "A16",
"from_text": "A competition-based club can attract a decent amount of students.",
"to_text": "A highly focused club like a computer club at the high school level may not benefit students.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A29",
"to_id": "A22",
"from_text": "A competition-based club can attract a decent amount of students.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "supports",
"strength": 0.4
},
{
"from_id": "A29",
"to_id": "A30",
"from_text": "A competition-based club can attract a decent amount of students.",
"to_text": "A computer club is unlikely to attract many students.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A30",
"to_id": "A16",
"from_text": "A computer club is unlikely to attract many students.",
"to_text": "A highly focused club like a computer club at the high school level may not benefit students.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A30",
"to_id": "A22",
"from_text": "A computer club is unlikely to attract many students.",
"to_text": "Starting a coding club in high school is a good idea.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A30",
"to_id": "A29",
"from_text": "A computer club is unlikely to attract many students.",
"to_text": "A competition-based club can attract a decent amount of students.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A31",
"to_id": "A32",
"from_text": "Hardware is expensive for the average student, which makes a computer club difficult to succeed unless in an affluent region.",
"to_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"type": "attacks",
"strength": 0.4
},
{
"from_id": "A31",
"to_id": "A42",
"from_text": "Hardware is expensive for the average student, which makes a computer club difficult to succeed unless in an affluent region.",
"to_text": "Building arcade cabinets with Raspberry Pi can be a good introduction to programming and provide a tangible reward.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A31",
"to_id": "A43",
"from_text": "Hardware is expensive for the average student, which makes a computer club difficult to succeed unless in an affluent region.",
"to_text": "Creating a gaming system with Raspberry Pi allows learning hardware and software while bringing people together with common interests.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A32",
"to_id": "A33",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "A club with a broader focus would attract more students and greater public support.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A32",
"to_id": "A34",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Focusing solely on 3D printing is too narrow of a niche for a club.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A32",
"to_id": "A35",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "The absence of shop-type classes or clubs in schools is detrimental.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A32",
"to_id": "A36",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Young people entering engineering and support fields often lack hands-on experience beyond what they learned in school.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A32",
"to_id": "A37",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Computer science graduates may lack understanding of how machines work or how to create physical objects.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A32",
"to_id": "A38",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A32",
"to_id": "A39",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A32",
"to_id": "A40",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Classes like art and shop are important for brain development and connecting academic subjects to the real world.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A32",
"to_id": "A42",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Building arcade cabinets with Raspberry Pi can be a good introduction to programming and provide a tangible reward.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A32",
"to_id": "A43",
"from_text": "Students would benefit from a modern shop class or club that exposes them to various technologies involved in making things.",
"to_text": "Creating a gaming system with Raspberry Pi allows learning hardware and software while bringing people together with common interests.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A33",
"to_id": "A34",
"from_text": "A club with a broader focus would attract more students and greater public support.",
"to_text": "Focusing solely on 3D printing is too narrow of a niche for a club.",
"type": "attacks",
"strength": 0.8
},
{
"from_id": "A33",
"to_id": "A38",
"from_text": "A club with a broader focus would attract more students and greater public support.",
"to_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A33",
"to_id": "A41",
"from_text": "A club with a broader focus would attract more students and greater public support.",
"to_text": "The idea of separating people based on different interests for a club is flawed.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A33",
"to_id": "A44",
"from_text": "A club with a broader focus would attract more students and greater public support.",
"to_text": "The very idea of a computer club separates people.",
"type": "attacks",
"strength": 0.5
},
{
"from_id": "A33",
"to_id": "A45",
"from_text": "A club with a broader focus would attract more students and greater public support.",
"to_text": "A robotics club brings together people with varying interests.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A34",
"to_id": "A38",
"from_text": "Focusing solely on 3D printing is too narrow of a niche for a club.",
"to_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A34",
"to_id": "A39",
"from_text": "Focusing solely on 3D printing is too narrow of a niche for a club.",
"to_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A34",
"to_id": "A45",
"from_text": "Focusing solely on 3D printing is too narrow of a niche for a club.",
"to_text": "A robotics club brings together people with varying interests.",
"type": "attacks",
"strength": 0.7
},
{
"from_id": "A35",
"to_id": "A36",
"from_text": "The absence of shop-type classes or clubs in schools is detrimental.",
"to_text": "Young people entering engineering and support fields often lack hands-on experience beyond what they learned in school.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A35",
"to_id": "A37",
"from_text": "The absence of shop-type classes or clubs in schools is detrimental.",
"to_text": "Computer science graduates may lack understanding of how machines work or how to create physical objects.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A35",
"to_id": "A39",
"from_text": "The absence of shop-type classes or clubs in schools is detrimental.",
"to_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A35",
"to_id": "A40",
"from_text": "The absence of shop-type classes or clubs in schools is detrimental.",
"to_text": "Classes like art and shop are important for brain development and connecting academic subjects to the real world.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A36",
"to_id": "A37",
"from_text": "Young people entering engineering and support fields often lack hands-on experience beyond what they learned in school.",
"to_text": "Computer science graduates may lack understanding of how machines work or how to create physical objects.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A36",
"to_id": "A39",
"from_text": "Young people entering engineering and support fields often lack hands-on experience beyond what they learned in school.",
"to_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A37",
"to_id": "A39",
"from_text": "Computer science graduates may lack understanding of how machines work or how to create physical objects.",
"to_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A38",
"to_id": "A39",
"from_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"to_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A38",
"to_id": "A41",
"from_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"to_text": "The idea of separating people based on different interests for a club is flawed.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A38",
"to_id": "A44",
"from_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"to_text": "The very idea of a computer club separates people.",
"type": "supports",
"strength": 0.5
},
{
"from_id": "A38",
"to_id": "A45",
"from_text": "Narrowly focused clubs do high school students a disservice by not providing a well-rounded education.",
"to_text": "A robotics club brings together people with varying interests.",
"type": "attacks",
"strength": 0.7
},
{
"from_id": "A39",
"to_id": "A40",
"from_text": "A lack of exposure to new things leads to less capable individuals after graduation.",
"to_text": "Classes like art and shop are important for brain development and connecting academic subjects to the real world.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A41",
"to_id": "A44",
"from_text": "The idea of separating people based on different interests for a club is flawed.",
"to_text": "The very idea of a computer club separates people.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A41",
"to_id": "A45",
"from_text": "The idea of separating people based on different interests for a club is flawed.",
"to_text": "A robotics club brings together people with varying interests.",
"type": "attacks",
"strength": 0.7
},
{
"from_id": "A42",
"to_id": "A43",
"from_text": "Building arcade cabinets with Raspberry Pi can be a good introduction to programming and provide a tangible reward.",
"to_text": "Creating a gaming system with Raspberry Pi allows learning hardware and software while bringing people together with common interests.",
"type": "supports",
"strength": 0.8
},
{
"from_id": "A42",
"to_id": "A45",
"from_text": "Building arcade cabinets with Raspberry Pi can be a good introduction to programming and provide a tangible reward.",
"to_text": "A robotics club brings together people with varying interests.",
"type": "supports",
"strength": 0.5
},
{
"from_id": "A43",
"to_id": "A45",
"from_text": "Creating a gaming system with Raspberry Pi allows learning hardware and software while bringing people together with common interests.",
"to_text": "A robotics club brings together people with varying interests.",
"type": "supports",
"strength": 0.5
},
{
"from_id": "A46",
"to_id": "A47",
"from_text": "Raspberry Pi and similar cards have problems in public schools, including cost issues.",
"to_text": "A robotics club offers opportunities for donations.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A48",
"to_id": "A49",
"from_text": "Creating physical objects like arcade gaming cabinets develops multiple skills beyond computer science.",
"to_text": "It is detrimental to pigeonhole students early in their primary school careers.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A48",
"to_id": "A51",
"from_text": "Creating physical objects like arcade gaming cabinets develops multiple skills beyond computer science.",
"to_text": "Students need more diversity in mandatory classes.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A49",
"to_id": "A50",
"from_text": "It is detrimental to pigeonhole students early in their primary school careers.",
"to_text": "Schools have gotten worse at exposing students to various possibilities.",
"type": "supports",
"strength": 0.6
},
{
"from_id": "A49",
"to_id": "A51",
"from_text": "It is detrimental to pigeonhole students early in their primary school careers.",
"to_text": "Students need more diversity in mandatory classes.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A50",
"to_id": "A51",
"from_text": "Schools have gotten worse at exposing students to various possibilities.",
"to_text": "Students need more diversity in mandatory classes.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A52",
"to_id": "A49",
"from_text": "Early computer science education is beneficial because future technology will be driven by today's students.",
"to_text": "It is detrimental to pigeonhole students early in their primary school careers.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A53",
"to_id": "A49",
"from_text": "Everyone interacts with computers daily, making computer science education practical.",
"to_text": "It is detrimental to pigeonhole students early in their primary school careers.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A54",
"to_id": "A49",
"from_text": "Most colleges require an introductory computer science class, making early exposure practical for students.",
"to_text": "It is detrimental to pigeonhole students early in their primary school careers.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A55",
"to_id": "A48",
"from_text": "Many engineering and mathematic disciplines are involved in robotics.",
"to_text": "Creating physical objects like arcade gaming cabinets develops multiple skills beyond computer science.",
"type": "supports",
"strength": 0.7
},
{
"from_id": "A56",
"to_id": "A55",
"from_text": "Students are more likely to be interested in building and programming their own device that plays games than in learning engineering and mathematics.",
"to_text": "Many engineering and mathematic disciplines are involved in robotics.",
"type": "attacks",
"strength": 0.6
},
{
"from_id": "A56",
"to_id": "A57",
"from_text": "Students are more likely to be interested in building and programming their own device that plays games than in learning engineering and mathematics.",
"to_text": "It is important to adapt to students' interests rather than force them into traditional learning methods.",
"type": "supports",
"strength": 0.8