-
Notifications
You must be signed in to change notification settings - Fork 5
/
README_OSS.spdx
2474 lines (1885 loc) · 141 KB
/
README_OSS.spdx
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
SPDXVersion: SPDX-2.1
DataLicense: CC0-1.0
##-------------------------
## Document Information
##-------------------------
DocumentNamespace: http://fossology.siemens.com/repo/FOSSologyML.zip_1566192470.spdx
DocumentName: /srv/fotransfer/repository/report
SPDXID: SPDXRef-DOCUMENT
##-------------------------
## Creation Information
##-------------------------
Creator: Tool: spdx2
Creator: Person: [email protected] ([email protected])
CreatorComment: <text>
This document was created using license information and a generator from Fossology.
</text>
Created: 2019-08-19T05:27:51Z
LicenseListVersion: 2.6
##-------------------------
## Package Information
##-------------------------
PackageName: FOSSologyML
PackageFileName: FOSSologyML.zip
SPDXID: SPDXRef-upload18513
PackageDownloadLocation: NOASSERTION
PackageVerificationCode: 5c8041a353e00b7b2e4509306db3c183d0ed29cf
PackageChecksum: SHA1: 0310a399dfeca271d215ca158f845e2562684839
PackageChecksum: MD5: bc74b0c613a3408896619b780df9569a
PackageLicenseConcluded: LicenseRef-GPL-2.0-only
PackageLicenseDeclared: LicenseRef-GPL-2.0-only
PackageLicenseComments: <text> licenseInfoInFile determined by Scanners:
- nomos ("ng-3.5.0-134-gd99257d".d99257)
- monk ("ng-3.5.0-134-gd99257d".d99257) </text>
PackageLicenseInfoFromFiles: NOASSERTION
PackageCopyrightText: NOASSERTION
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-upload18513
##--------------------------
## File Information
##--------------------------
##File
FileName: rigel-master/rigel/pipeline/preprocessor/comment_extractor.py
SPDXID: SPDXRef-item69525079
FileChecksum: SHA1: 0b6602a932858134b4c1720831fda3b422cf3a2f
FileChecksum: MD5: d0e2a84eb5bae5b23186b6015a8a5f05
LicenseConcluded: GPL-2.0-only AND LicenseRef-MIT
LicenseInfoInFile: LicenseRef-MIT
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (c) 2017 Tay Wee Leng Kelvin
Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/README.rst
SPDXID: SPDXRef-item69525050
FileChecksum: SHA1: 77556ee4f1bc84b548600040b847cc0925208940
FileChecksum: MD5: d4994a8b2c7ae41dd5a5de9ab2734639
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/LICENSE.rst
SPDXID: SPDXRef-item69525044
FileChecksum: SHA1: a18d1a98a592c6f1e812003e6ab6d159d62d7d98
FileChecksum: MD5: 6eb72687e4927993b34f8ec6a7280e11
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
LicenseInfoInFile: LicenseRef-LGPL-2.1
LicenseInfoInFile: GPL-2.0-only-with-GCC-exception
LicenseInfoInFile: GPL-2.0-only--with-bison-exceptions
LicenseInfoInFile: GPL-2.0-only--with-libtool-exception
LicenseInfoInFile: GPL-2.0-only--with-ADA-Exception
FileCopyrightText: <text> Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. </text>
##File
FileName: rigel-master/test/test_sk_pipeline.py
SPDXID: SPDXRef-item69525027
FileChecksum: SHA1: 992bce0827656a25ebbe76a7aae7402bdd9d3ec0
FileChecksum: MD5: 605476d4cdf0f11f92bc1e4f9ae5b70e
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/preprocessor/preprocessor.py
SPDXID: SPDXRef-item69525078
FileChecksum: SHA1: 061975647b480ec78e7c34b313f9b93ff2652399
FileChecksum: MD5: 443a3d0fcad089a679b63a9c0868a1ee
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/analyze_data.py
SPDXID: SPDXRef-item69525090
FileChecksum: SHA1: ec0a65e4548905ea818f6215d7d960e27e69c8b4
FileChecksum: MD5: a774b2bdfc4d70884bb42c856e20f6db
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/database.py
SPDXID: SPDXRef-item69525093
FileChecksum: SHA1: e61326fa026a5913daafe960eb9fc928e1a2899d
FileChecksum: MD5: 8a07c72c2c9bdd0b3f5ab60a0fdf0501
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_utils.py
SPDXID: SPDXRef-item69525029
FileChecksum: SHA1: 75b540a13f18cc498f1c529b8881d00cf166b7f9
FileChecksum: MD5: 5dabd073212fd57cda2919c7a2cd6449
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/sk_pipeline.py
SPDXID: SPDXRef-item69525071
FileChecksum: SHA1: e19e8adebe70a632f980f0832c975d7478b7ca3e
FileChecksum: MD5: 3ac8f767cbe1be33bdc860e874fc6292
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/update_data.py
SPDXID: SPDXRef-item69525089
FileChecksum: SHA1: a38647080fbb10d5fd47cbc99820710ceadf9728
FileChecksum: MD5: 0e84778befbafead61da04b1318f8a29
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/cli/prediction_logic.py
SPDXID: SPDXRef-item69525057
FileChecksum: SHA1: e701ecfbe651f8b0c35b2225399362e70a527a5f
FileChecksum: MD5: 2a7e15f9d7f6ba71007bff6b5d1aa8d5
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/dataloader/data_loader.py
SPDXID: SPDXRef-item69525081
FileChecksum: SHA1: b9cc2cfc3172f7033c2b185d1e9915911cc5c132
FileChecksum: MD5: 23c02b47ee459873a048a0a4c8e187c3
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/enums.py
SPDXID: SPDXRef-item69525083
FileChecksum: SHA1: 36b41922766e0de5292fcb8085f0d32aeababdc0
FileChecksum: MD5: 5c745e922a45277f79dcabbcca089ff6
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/cli/cli.py
SPDXID: SPDXRef-item69525056
FileChecksum: SHA1: 98bc157770aff1695f3cd82e33e6df6a681e6dc9
FileChecksum: MD5: cba88c7345352e7fda76f7f110e16332
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/pipeline_factory.py
SPDXID: SPDXRef-item69525072
FileChecksum: SHA1: b329c76ef114ca327caef9313c24c8b5d447cbaf
FileChecksum: MD5: faeed5e77eff9a09f566065f944e1ca7
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_comment_extractor.py
SPDXID: SPDXRef-item69525026
FileChecksum: SHA1: 7ea50056e4beca81ab8fa7d972edf7c83dd76ec5
FileChecksum: MD5: f7387b2b7cd93c34ba866536471f2186
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_cli.py
SPDXID: SPDXRef-item69525043
FileChecksum: SHA1: 989d1d912a90371dbf5c984c68f05c9ff6ec22b5
FileChecksum: MD5: 0cc573b43d6463636c2beb73f1d403c5
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_data_loader.py
SPDXID: SPDXRef-item69525042
FileChecksum: SHA1: ba0b8f8e4e08f6b944d6610dea12f7c757edde30
FileChecksum: MD5: 4a2e8964bacefe9528e7b452b28e29d3
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/setup.py
SPDXID: SPDXRef-item69525046
FileChecksum: SHA1: a70021a82a31e11a8df6f42bf943f937f0d449fa
FileChecksum: MD5: 0eb2bbc37be74b793b600ddbdd11a11b
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/sk_pipeline_special_cases.py
SPDXID: SPDXRef-item69525073
FileChecksum: SHA1: 4284f8e08dd0dfd154cd071e48636d8a016aeecf
FileChecksum: MD5: dec51ac85dcde707d56837a90849daa9
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/scripts/create_docker_mongodb.sh
SPDXID: SPDXRef-item69525087
FileChecksum: SHA1: 2dda1d2e1d80eeb209e673153d52819362823e49
FileChecksum: MD5: e13047dab44859d8e71dcb474e874cb7
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/runserver.py
SPDXID: SPDXRef-item69525062
FileChecksum: SHA1: 01b6c699d0d5977c50e7cf657a39b182817a8ea5
FileChecksum: MD5: 4c648baff9ff3924ba1c02597a09971a
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/convert_data.py
SPDXID: SPDXRef-item69525095
FileChecksum: SHA1: 1605782e23255c6781d366aa94993b55b32f0ca8
FileChecksum: MD5: 560cbefeabd03d03771cc1f56c1d875c
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_prediction_logic.py
SPDXID: SPDXRef-item69525031
FileChecksum: SHA1: 57b634940f3d5c25308d19826eabc0737935dd19
FileChecksum: MD5: ad43ad29838099e523cc02e5c2648149
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/scripts/mongo-entrypoint/create_mongodb_users.sh
SPDXID: SPDXRef-item69525086
FileChecksum: SHA1: ab3855a9f4681b4cd8c1695654d6d901f016a694
FileChecksum: MD5: 3064ad7bc1f926978191fd92ac4230ed
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/cli/__init__.py
SPDXID: SPDXRef-item69525055
FileChecksum: SHA1: 274a506029521745e30eaa04b71716397b2b14c6
FileChecksum: MD5: 2493f9cca2e542101843d9af01cd9faf
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/dataloader/__init__.py
SPDXID: SPDXRef-item69525082
FileChecksum: SHA1: af95ada8515641ed655033d9b7090902ed3b8639
FileChecksum: MD5: d46b0e9bef689857247efbacde60c737
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/preprocessor/__init__.py
SPDXID: SPDXRef-item69525076
FileChecksum: SHA1: af95ada8515641ed655033d9b7090902ed3b8639
FileChecksum: MD5: d46b0e9bef689857247efbacde60c737
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/__init__.py
SPDXID: SPDXRef-item69525070
FileChecksum: SHA1: af95ada8515641ed655033d9b7090902ed3b8639
FileChecksum: MD5: d46b0e9bef689857247efbacde60c737
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/api/__init__.py
SPDXID: SPDXRef-item69525066
FileChecksum: SHA1: af95ada8515641ed655033d9b7090902ed3b8639
FileChecksum: MD5: d46b0e9bef689857247efbacde60c737
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/__init__.py
SPDXID: SPDXRef-item69525061
FileChecksum: SHA1: af95ada8515641ed655033d9b7090902ed3b8639
FileChecksum: MD5: d46b0e9bef689857247efbacde60c737
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/__init__.py
SPDXID: SPDXRef-item69525052
FileChecksum: SHA1: af95ada8515641ed655033d9b7090902ed3b8639
FileChecksum: MD5: d46b0e9bef689857247efbacde60c737
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_preprocessor.py
SPDXID: SPDXRef-item69525030
FileChecksum: SHA1: 4669db7273ec126f73d604b7dee23741be4170e4
FileChecksum: MD5: f291c11f44c622478825a6a2b7e40dd6
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/setup.cfg
SPDXID: SPDXRef-item69525049
FileChecksum: SHA1: dca301623de0153bb6131ceff6d212bff4f7c6d7
FileChecksum: MD5: 88022ae978531cf4b87b0b5bca75a33b
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/utils.py
SPDXID: SPDXRef-item69525058
FileChecksum: SHA1: 428340d85de87c7d25f2b5409bf1c4bd99a81f94
FileChecksum: MD5: 9665960290570f0edee34ecd4e30459c
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/train_sk_pipeline_special_cases.py
SPDXID: SPDXRef-item69525098
FileChecksum: SHA1: 826787a07bc74b0d97683c5c278955395f960f65
FileChecksum: MD5: f0639d1d56e0bbf14eda833f7685cde8
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/example.env
SPDXID: SPDXRef-item69525091
FileChecksum: SHA1: 8b472fdb1f988e1c358615ebcfa54ba3c5f86522
FileChecksum: MD5: 3f6b26c56707601b078e4e3fc6a2101e
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/rigelapp.wsgi
SPDXID: SPDXRef-item69525060
FileChecksum: SHA1: 092b1931ba6e54dd9967034db15f9646b7ee1751
FileChecksum: MD5: aa923445c0c26c86e33af204814c4014
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/__init__.py
SPDXID: SPDXRef-item69525028
FileChecksum: SHA1: 6f92f09f1dd4ce3f35ed1eef6b7e0891080520a2
FileChecksum: MD5: 1a09532dc5d96eb3c7c45cee3b84a138
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/preprocessor/preprocessor_spacy.py
SPDXID: SPDXRef-item69525075
FileChecksum: SHA1: 4ee9df70585ca1a783bc1398605b8aa1e37f7caa
FileChecksum: MD5: 2b75614021eb70814de7f07ffef44f8f
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/api/errors.py
SPDXID: SPDXRef-item69525068
FileChecksum: SHA1: 8fc5dac0ebacfee13987243881b32f409a0814be
FileChecksum: MD5: 5e1cad02639c993c7ac39bd85f76acde
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/utils.py
SPDXID: SPDXRef-item69525094
FileChecksum: SHA1: b03d3a8297326af2cc52de5369145c2bccbfff71
FileChecksum: MD5: 64bddf266464e6c53365d8a1d170ab0e
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/api/models.py
SPDXID: SPDXRef-item69525065
FileChecksum: SHA1: c7bec3e995068f549625bad8d19176769195f25d
FileChecksum: MD5: 09f7f71e65eff089d21f9480d3ccd01e
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/train_sk_pipeline.py
SPDXID: SPDXRef-item69525096
FileChecksum: SHA1: 8fb4f24ccb7f680c4e030895c9371af76275fd92
FileChecksum: MD5: e1eec1bc6b1f8fa652acd7749af9de90
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/download_data.py
SPDXID: SPDXRef-item69525053
FileChecksum: SHA1: 180a0bc28d736596fe6e0b3269a075f447de551f
FileChecksum: MD5: 9a32064c9bc0df7a8db68b81105dc56f
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/app.py
SPDXID: SPDXRef-item69525063
FileChecksum: SHA1: f270ba78e3907b48cd4dffe2728c7038ca78d31d
FileChecksum: MD5: 50b9c646fb8966231e1b3c5bdc6af48a
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/pipeline/preprocessor/preprocessor_nltk.py
SPDXID: SPDXRef-item69525077
FileChecksum: SHA1: 53e89cc9baa4601f3091c9bd31da4698ca127b40
FileChecksum: MD5: 5b79a91360598f6545188e0a25e82c4a
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/rigel/server/api/endpoints.py
SPDXID: SPDXRef-item69525067
FileChecksum: SHA1: 24e0721decc61f37d98a7aa75050c1abec3d9e50
FileChecksum: MD5: e142c8b4196ec554f9f995114ec38656
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/train_model/documents.py
SPDXID: SPDXRef-item69525097
FileChecksum: SHA1: 4be4b0324ed13286550cde225c804eb0a2b2a8b1
FileChecksum: MD5: b55d51e5567df5d22957b18cf29e364c
LicenseConcluded: GPL-2.0-only
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text> Copyright (C) 2018, Siemens AG </text>
##File
FileName: rigel-master/test/test_data/java.java
SPDXID: SPDXRef-item69525033
FileChecksum: SHA1: cc544834823805ece044243603b6642444a6e587
FileChecksum: MD5: b015b4356dd88f68e7a2c098f2618c20
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/python.py
SPDXID: SPDXRef-item69525034
FileChecksum: SHA1: 7a9a56233351dc846231a0bf34af24712dbb498e
FileChecksum: MD5: 2c5e4346da26e853ec8a4e0a168af360
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/php.php
SPDXID: SPDXRef-item69525035
FileChecksum: SHA1: ffefd8e9d8725ebbcd7e8da0c5a959966ed8224d
FileChecksum: MD5: 147af8be3cc358729196a7ce8242f5fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/c.c
SPDXID: SPDXRef-item69525036
FileChecksum: SHA1: 19b62d6e19e92f9dd2cb05f9b074e2bc75b58950
FileChecksum: MD5: 87079d103894f3aa3c5b1235e37b9485
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/xml.xml
SPDXID: SPDXRef-item69525037
FileChecksum: SHA1: b9a01c567e34492499a8bf30ba3e2434c06565b0
FileChecksum: MD5: 98fa03992fd181fa7ae7259068edebcb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/error_file.scratch
SPDXID: SPDXRef-item69525038
FileChecksum: SHA1: 8e57ccf26fa1152750a5804cdb5287b31d245baa
FileChecksum: MD5: 8589eed97db5dde9ac495878db90b1ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/shell.sh
SPDXID: SPDXRef-item69525039
FileChecksum: SHA1: 87572e59dc5bf59e6fa1b58016611a68ccc8c613
FileChecksum: MD5: 07bc01c2ef125e224e49abddde39781c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/html.html
SPDXID: SPDXRef-item69525040
FileChecksum: SHA1: 8c22f1d87cbb55224df6ad4ca9feb4283bb2dae1
FileChecksum: MD5: f9eb009fa27991fa5e208252a45ac259
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/test/test_data/c_plus_plus.cpp
SPDXID: SPDXRef-item69525041
FileChecksum: SHA1: f834cc55fd0d6f6e56d7dbccba805d20c778c3b2
FileChecksum: MD5: e517eb6d31f9c446f1a6375b32452f64
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/.gitignore
SPDXID: SPDXRef-item69525045
FileChecksum: SHA1: bf759f8258fa8d5c8a156eff73fc84300d1c19e3
FileChecksum: MD5: b67b9303703eba84a8ced2501c82a183
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/models/.gitkeep
SPDXID: SPDXRef-item69525048
FileChecksum: SHA1: da39a3ee5e6b4b0d3255bfef95601890afd80709
FileChecksum: MD5: d41d8cd98f00b204e9800998ecf8427e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/train_model/requirements.txt
SPDXID: SPDXRef-item69525092
FileChecksum: SHA1: 083f0a8295d4d26916f01b82705e0a4b80546ed7
FileChecksum: MD5: 898d2f3e28a6cc3136d5729dec957050
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/modules.rst
SPDXID: SPDXRef-item69525100
FileChecksum: SHA1: 37190e5d39a97faf3d51a8cb28a5525058084be9
FileChecksum: MD5: ecf6cd0f7109246e250aac7f6289cf23
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/train_sk_pipeline.rst
SPDXID: SPDXRef-item69525101
FileChecksum: SHA1: 61fb6b68720ebd227389ac31819a0e7a7774b9f6
FileChecksum: MD5: 21181b58669cb1c3eb6a38de2617099b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/conf.py
SPDXID: SPDXRef-item69525102
FileChecksum: SHA1: d9d84c201a55947f33610565d2e3ed9c80530705
FileChecksum: MD5: f60f8a52672cd7e2d8c9d4bb8a523fa3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: <text> copyright 2018, Siemens AG </text>
##File
FileName: rigel-master/docs/Makefile
SPDXID: SPDXRef-item69525103
FileChecksum: SHA1: 624877801dee8423df0e7355b383fd10ad3f1a7e
FileChecksum: MD5: e946be326e056b31d18616403c990b34
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/train_model.rst
SPDXID: SPDXRef-item69525104
FileChecksum: SHA1: d31d9f939c109597c2497adabf5ab86268ca1d75
FileChecksum: MD5: 5bedfb0505b0b4a9a6ebf2b40c4d1ee2
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/index.rst
SPDXID: SPDXRef-item69525105
FileChecksum: SHA1: 6f7a86f31ca2e057e63f05a34053ebeabb0f26b8
FileChecksum: MD5: 10b83d6be45fc76f3d6c24a53a356bae
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/update_data.rst
SPDXID: SPDXRef-item69525106
FileChecksum: SHA1: 3ee93d2d5305fe28b37aab57c32f92de5e084fcb
FileChecksum: MD5: 9438b8025509716df55f3e51aa6386db
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/convert_data.rst
SPDXID: SPDXRef-item69525107
FileChecksum: SHA1: 57d41b7a9c5bc9a412c1f4d15167a1e8714e6c12
FileChecksum: MD5: 7752484ad663545e9f8fedfff45a46dc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/import_data.rst
SPDXID: SPDXRef-item69525108
FileChecksum: SHA1: 3ffefe5d2158699a4439067d866b5e34a0a83078
FileChecksum: MD5: 8ee007003dc8f854b0f3b78ed52ed22a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/docs/readme.rst
SPDXID: SPDXRef-item69525109
FileChecksum: SHA1: d4c8e54317fd5e3ae55748331388852183790426
FileChecksum: MD5: 1d5d838e9eae5eaf006a13ef0f28e675
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##File
FileName: rigel-master/MANIFEST.in
SPDXID: SPDXRef-item69525110
FileChecksum: SHA1: ca13de1972553a97503a0f03c1d3930c91a7c724
FileChecksum: MD5: 6c6267cb5b6b4b9d731838ab696e43d9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: NOASSERTION
FileCopyrightText: NOASSERTION
##-------------------------
## License Information
##-------------------------
LicenseID: GPL-2.0-only--with-ADA-Exception
LicenseName: GPL-2.0+-with-ADA-Exception
ExtractedText: <text> GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your