-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigitrubber-base.obo
7530 lines (6892 loc) · 350 KB
/
digitrubber-base.obo
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
format-version: 1.2
data-version: digitrubber/releases/2023-06-01/digitrubber-base.owl
date: 01:06:2023 08:05
ontology: digitrubber/digitrubber-base
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/description "DigitRubber Ontology" xsd:string
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/unspecified
property_value: http://purl.org/dc/terms/title "DigitRubber Ontology" xsd:string
property_value: owl:versionInfo "2023-06-01" xsd:string
[Term]
id: DIGITRUBBER:0000000
name: root node
[Term]
id: DIGITRUBBER_000001
name: measurement quality [imr]
def: "In relation to optical measuring methods a \nrating for the precision of a reconstructed\nmeasurement object" []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "18.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000118 "is quality measurement (http://purl.obolibrary.org/obo/IAO_0000221 - m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q). TIB terminological service." xsd:string
[Term]
id: DIGITRUBBER_000002
name: extrudate [imr]
def: "definded rigid Object based as result of an \nextrusion process" []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
[Term]
id: DIGITRUBBER_000003
name: geometry [imr]
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
[Term]
id: DIGITRUBBER_000004
name: geometry [geosparql]
def: "A coherent set of direct positions in space. The positions are held within a Spatial Reference System (SRS)." []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "18.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://www.opengis.net/ont/geosparql#Geometry" xsd:string
property_value: IAO:0000412 http://www.opengis.net/ont/geosparql#
property_value: isDefinedBy "geosparql" xsd:string
[Term]
id: DIGITRUBBER_000005
name: point cloud [imr]
def: "A gathering of individual points with an \nwith an unstructured spatial structure" []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
[Term]
id: DIGITRUBBER_000006
name: triangulation [imr]
def: "geometrical method to determine distances \nbetween to points" []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
[Term]
id: DIGITRUBBER_000007
name: millimeter [imr]
synonym: "mm" EXACT []
is_a: UO:1000008
property_value: coarseClassification "quality" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000008
name: millimeter [nist]
def: "\"A length unit which is equal to one thousandth of a meter or 10^[-3] m.\" [NIST:NIST]" []
comment: Imported from ontocomons, also present in TIB terminological service
synonym: "mm" EXACT []
is_a: UO:1000008
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "18.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000118 "mm MILLIMETER Millimeter millimeter(s) millimeter" xsd:string
property_value: IAO:0000119 "https://ontobee.org/ontology/UO?iri=http://purl.obolibrary.org/obo/UO_0000016" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/uo.owl
property_value: isDefinedBy "NIST (OntoCommons)" xsd:string
[Term]
id: DIGITRUBBER_000009
name: surface of extrudate [imr]
def: "uppermost layer of the extrudate" []
is_a: BFO:0000141
property_value: coarseClassification "immaterial entity" xsd:string
[Term]
id: DIGITRUBBER_000010
name: line in the surface of extrudate [imr]
def: "cutout of a single line of the extrudate surface" []
is_a: BFO:0000141
property_value: coarseClassification "immaterial entity" xsd:string
[Term]
id: DIGITRUBBER_000011
name: shape [imr]
is_a: BFO:0000141
property_value: coarseClassification "immaterial entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "15.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "https://ontobee.org/ontology/PATO?iri=http://purl.obolibrary.org/obo/PATO_0000052" xsd:string
property_value: IAO:0000412 https://ontobee.org/ontology/PATO
property_value: isDefinedBy "PATO" xsd:string
[Term]
id: DIGITRUBBER_000012
name: shape [ncit]
def: "The spatial arrangement of something as distinct from its substance." []
is_a: BFO:0000141
property_value: coarseClassification "immaterial entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "18.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C25677" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCI" xsd:string
[Term]
id: DIGITRUBBER_000013
name: shape [pato]
def: "A morphological quality inhering in a bearer by virtue of the bearer's ratios of distances between its features (points, edges, surfaces and also holes etc)." []
is_a: BFO:0000141
property_value: coarseClassification "immaterial entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "18.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/PATO_0000052" xsd:string
property_value: IAO:0000412 https://ontobee.org/ontology/PATO
property_value: isDefinedBy "PATO" xsd:string
[Term]
id: DIGITRUBBER_000014
name: stitching process [imr]
def: "use of different algorithms to determine the \nexact allignment respectively the characteristik shared edges" []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
[Term]
id: DIGITRUBBER_000015
name: stitching method [imr]
def: "alligning of single measurements to form a \nconnected/combined measurement" []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
[Term]
id: DIGITRUBBER_000016
name: distance between sensor and extrudate [imr]
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
[Term]
id: DIGITRUBBER_000017
name: extrudate norm [imr]
def: "ideal dimensions and shape of the\nextrudate defined by the manufacturer" []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
[Term]
id: DIGITRUBBER_000018
name: standard deviation [imr]
def: "a quantity expressing by how much the\nmembers of a group differ from the mean\n value for the group" []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "15.08.2021" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000019
name: standard deviation [Wikipedia]
def: "The standard deviation is a measure of the amount of variation or dispersion of a set of values. [Wikipedia]" []
comment: from ontocommons skos:definition
is_a: IAO:0000030
property_value: IAO:0000119 "http://purl.allotrope.org/ontologies/result#AFR_0002192" xsd:string
property_value: IAO:0000412 http://purl.allotrope.org/
[Term]
id: DIGITRUBBER_000020
name: standard deviation [ncit]
def: "A measure of the range of values in a set of numbers. Standard deviation is a statistic used as a measure of the dispersion or variation in a distribution, equal to the square root of the arithmetic mean of the squares of the deviations from the arithmetic mean." []
comment: TIB terminological service
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "18.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C53322" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCIT" xsd:string
[Term]
id: DIGITRUBBER_000021
name: interior orientation [jade]
def: "\"The interior (intrinsic) orientation of a camera comprises all instrumental and mathematical elements which completely describe the imaging model within the camera. By taking proper account of the interior orientation, the real camera conforms to the pinhole camera model. It is a requirement of the model that there exists a reproducible image coordinate system so that geometric image values, such as measured image coordinates, can be transformed into the physical-mathematical imaging model.\" (Luhmann et al. 2020: 162). A standard model of describing the interior orientation was proposed by D.C. Brown (1971)" []
comment: 0
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: IAO:0000119 "Luhmann, Robson, Kyle & Boehm (2020): Close-Range Photogrammetry and 3D Imaging, 3rd ed. De Gruyter: Berlin, Boston" xsd:string
[Term]
id: DIGITRUBBER_000022
name: camera coordinate system [jade]
def: "\"The camera coordinate system has its origin at the perspective centre of the image. It is further defined by reference features fixed in the camera (fiducial marks, réseau, sensor system). It can therefore be reconstructed from the image and related to an image measuring device\" (Luhmann et al. 2020: 278)" []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: IAO:0000119 "Luhmann, Robson, Kyle & Boehm (2020): Close-Range Photogrammetry and 3D Imaging, 3rd ed. De Gruyter: Berlin, Boston" xsd:string
[Term]
id: DIGITRUBBER_000023
name: exterior orientation [jade]
def: "\"The exterior orientation consists of six parameters which describe the spatial position and orientation of the camera coordinate system with respect to the global object coordinate system\" (Luhmann et al. 2020: 277)" []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: IAO:0000119 "Luhmann, Robson, Kyle & Boehm (2020): Close-Range Photogrammetry and 3D Imaging, 3rd ed. De Gruyter: Berlin, Boston" xsd:string
[Term]
id: DIGITRUBBER_000024
name: camera calibration [jade]
def: "\"The photogrammetric determination of the parameters of interior orientation is usually referred to as calibration. This is based on the idea that once a mechanically stable camera is calibrated, it may be moved from one image taking location to another whilst retaining its calibration.\" (Luhmann, Robson et al. 2020: 170)" []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: IAO:0000119 "Luhmann, Robson, Kyle & Boehm (2020): Close-Range Photogrammetry and 3D Imaging, 3rd ed. De Gruyter: Berlin, Boston" xsd:string
[Term]
id: DIGITRUBBER_000025
name: bundle adjustment [jade]
def: "\"Bundle adjustment [...] is a method for the simultaneous numerical fit of an unlimited number of spatially distributed images (bundles of rays). It makes use of photogrammetric observations (measured image points), survey observations and an object coordinate system. Using tie points, single images are merged into a global model in which the object surface can be reconstructed in three dimensions.\" (Luhmann et al. 2020: 349f.)" []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: IAO:0000118 "bundle triangulation, bundle block adjustment, multi-image triangulation, multi-image orientation" xsd:string
property_value: IAO:0000119 "Luhmann, Robson, Kyle & Boehm (2020): Close-Range Photogrammetry and 3D Imaging, 3rd ed. De Gruyter: Berlin, Boston" xsd:string
[Term]
id: DIGITRUBBER_000026
name: Agent
name: agent [ita]
def: "An agent is a system that perceives its environment through sensors and can interact with it through actions." []
is_a: BFO:0000023
property_value: coarseClassification "role" xsd:string
[Term]
id: DIGITRUBBER_000027
name: agent [ncti]
def: "An active power or cause (as principle, substance, physical or biological factor, etc.) that produces a specific effect." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: BFO:0000023
property_value: coarseClassification "role" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "22.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C1708" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCIT" xsd:string
creation_date: 22.08.2022
[Term]
id: DIGITRUBBER_000028
name: approximation [ita]
name: Approximationsmethode
def: "Approximation is a technique for approximating a value using historical or available observations from the domain." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000029
name: function approximation [ita]
name: Funktionsapproximationsmethode
def: "Function approximation is a technique for estimating an unknown underlying function using historical or available observations from the domain." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000030
name: bestärkendes Lernen
name: reinforcement learning [ita]
def: "Reinforcement learning is a set of machine learning methods in which an agent autonomously learns a strategy to maximize a reward. Algorithms follow the trail-and-error principle, thus try several strategies and repeat those with a higher reward. During the training the agent produces an input, while the target output is only known to a teacher. The teacher gives feedback to the agent in form of a reward." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000031
name: Bibliothek
name: library [ita]
def: "Libraries in programming languages are collections of prewritten code that users can use to optimize tasks." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000032
name: cluster analysis [ita]
name: Clusteranalyse
def: "Clustering or cluster analysis is a unsupervised machine learning technique, which groups the unlabelled dataset. It can be defined as a way of grouping the data points into different clusters, consisting of similar data points." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000033
name: cluster analysis [ncti]
def: "Methods for grouping objects into subsets such that those within each cluster are more closely related to one another than objects assigned to different clusters." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "22.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C15426" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCIT" xsd:string
creation_date: 22.08.2022
[Term]
id: DIGITRUBBER_000034
name: Data Mining
name: data mining [ita]
def: "A Database is a System for describing, storing and retrieving large amounts of data." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000035
name: data mining [edam]
def: "An information set with a regular structure. Although it can be applied to any set of information the term was invented to refer to computerized data, and is used almost exclusively in computing." []
comment: http://edamontology.org
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "22.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://edamontology.org/topic_3473" xsd:string
property_value: IAO:0000412 http://edamontology.org
property_value: isDefinedBy "EDAM" xsd:string
creation_date: 22.08.2022
[Term]
id: DIGITRUBBER_000036
name: database [ita]
name: Datenbank
def: "A Database is a System for describing, storing and retrieving large amounts of data." []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "ITA" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000037
name: database [ncti]
def: "An information set with a regular structure. Although it can be applied to any set of information the term was invented to refer to computerized data, and is used almost exclusively in computing." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C15426" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000038
name: Deep Learning
name: deep learning [ita]
def: "Deep learning is a class of machine learning algorithms that uses multiple layers to progressively extract higher-level features from the raw input. There is no universally agreed-upon threshold of depth that divides shallow learning from deep learning, but most researchers agree that deep learning involves CAP depth higher than 2. The CAP (credit assignment path) is the chain of transformations from input to output. CAPs describe potentially causal connections between input and output. For simple neural networks (feedforward neural networks) this treshhold is reached with at least two hidden layers." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000039
name: deep learning [ncti]
def: "A subset of machine learning that is part of the broader family of machine learning methodologies based on artificial neural networks. A deep neural network has multiple layers between input and output layers to progressively extract higher level features from the raw input. (After DeepAI Machine Learning Glossary and Terms) [ NCI ]" []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C176258" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000040
name: Eingangsvektor
name: input layer [ita]
def: "The input layer of a neural network is composed of artificial input neurons, and brings the initial data into the system for further processing by subsequent layers of artificial neurons. The input layer is the very beginning of the workflow for the artificial neural network." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000041
name: Elastomere
name: elastomers [ita]
def: "Elastomers are dimensionally stable but elastically deformable plastics. They are producest by vulcanization of rubber." []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000042
name: Ergebnisvektor
name: output layer [ita]
def: "The output layer in an artificial neural network is the last layer of neurons that produces given outputs for the program." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000043
name: Extrusion
name: extrusion [ita]
def: "Extrusion is a process used to create objects of a fixed cross-sectional profile by pushing material through a die of the desired cross-section." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000044
name: extrusion [rex]
def: "A transformation in which an atom or group Y connected to two other atoms or groups X and Z is lost from a molecule, leading to a product in which X is bonded to Z, e.g. X-Y-Z --> X-Z + Y." []
comment: http://purl.obolibrary.org/obo/rex.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/REX_0000100" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/rex.owl
property_value: isDefinedBy "REX" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000045
name: extrusion [chmo]
def: "A process used to create objects of a fixed cross-sectional profile by forcing or drawing a material through a die." []
comment: http://purl.obolibrary.org/obo/chmo.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/CHMO_0001613" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
property_value: isDefinedBy "CHMO" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000046
name: hidden layer [ita]
name: Hidden-Layer
def: "In neural networks, a hidden layer is located between the input and output of the algorithm, in which the function applies weights to the inputs and directs them through an activation function as the output. In short, the hidden layers perform nonlinear transformations of the inputs entered into the network." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000047
name: Industrie 4.0
name: Industrie 4.0 [ita]
def: "Industrie 4.0 is the intelligent networking of machines and processes in the industrial environment, with the help of information and communication technology and thus digitization of the industrial production." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000048
name: Kautschuk
name: rubber [ita]
def: "Rubber is an elastic substance made either from the juice of particular tropical trees or artificially. It is raw material for car tires and other technical products." []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000049
name: Artificial Intelligence (AI) [ita]
name: Künstliche Intelligenz (KI)
def: "Artifical intelligence is a branch of computer science dealing with the automation of intelligent behavior. Can be used in technical areas as methods of machine learning." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000050
name: Artificial Intelligence (AI) [ncti]
def: "Artificial intelligence is the branch of computer science that deals with writing computer programs that can solve problems creatively." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C16309" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000051
name: machine learning [ita]
name: maschinelles Lernen
def: "Machine learning is a sub-area of artificial intelligence that deals with artificial systems that adapt their actions to external conditions so that their output is improved according to defined standards. For this purpose, algorithms build a model based on training data. The algorithms does not learn to memorize, but uses patterns and laws, so the systems can also process unknown data. The learning algorithms are divided into supervised learning, unsupervised learning and reinforcement learning." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000052
name: machine learning [ncti]
def: "A computing system (inspired by biological neural networks) that learns (progressively improves its ability) to do tasks by considering examples without task-specific programming. (After DeepAI Machine Learning Glossary and Terms)" []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C176231" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCIT" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000053
name: machine learning [obi]
def: "A planned process in which statistical techniques are used to give computers the ability to learn about patterns in data, without being explicitly programmed. Learning is defined in this case as progressively improving performance on a specific task." []
comment: http://purl.obolibrary.org/obo/obi.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/OBI_0002587" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: isDefinedBy "OBI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000054
name: machine learning [edam]
def: "A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an ouput, rather than relying on explicitly encoded information only." []
comment: http://edamontology.org
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://edamontology.org/topic_3474" xsd:string
property_value: IAO:0000412 http://edamontology.org
property_value: isDefinedBy "EDAM" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000055
name: microcontroller [ita]
name: Mikrocontroller
def: "Microcontrollers are compact integrated circuits designed to govern a specific operation in an embedded system. Typically a microcontroller includes a processor, memory and input/output peripherals on a single chip." []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000056
name: Mischen
name: mixing [ita]
def: "Mixing is the first of the three areas of an extrusion line, where the input material is homogenized and mixed. This occurs within a screw element through shearing and mixing of the input material." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000057
name: mixing [chmo]
def: "The combining of components, particles or layers into a more homogeneous state. The mixing may be achieved manually or mechanically by shifting the material with stirrers or pumps or by revolving or shaking the container. The process μst not permit segregation of particles of different size or properties. Homogeneity may be considered to have been achieved in a practical sense when the sampling error of the processed portion is negligible compared to the total error of the measurement system." []
comment: http://purl.obolibrary.org/obo/chmo.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/CHMO_0001685" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
property_value: isDefinedBy "CHMO" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000058
name: mixing [ncti]
def: "To bring or combine together or with something else; add as an additional element or part." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C64925" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000059
name: Mustererkennung
name: pattern recognition [ita]
def: "Pattern recognition is the automated recognition of patterns and regularities in data. Pattern recognition has its origins in statistics and engineering; some modern approches include the use of machine learning, due to the increased availability of big data and a new abundance of processing power." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000060
name: pattern recognition [ncti]
def: "A branch of artificial intelligence concerned with the identification of visual or audio patterns by computers.For the computer to recognize the patterns, the patterns must be converted into digital signals and compared with patterns already stored in memory.Some uses of this technology are in character recognition, voice recognition, handwriting recognition, and robotics. (High-Tech Dictionary) [ NCI ]" []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C16961" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000061
name: neural network [ita]
name: neuronales Netz
def: "Artificial neural networks (ANNs) are based on a reduced set of concepts from biological neural systems. It is composed of different Layeres, an input layer, one or more hidden layers and an output layer. Each layer consists of several artificial neurons. The connections of the biological neuron are modeled in artificial neural networks as weights between the artificial neurons. A positive weight reflects an excitatory connection, while negative values mean inhibitory connections. An activation function controls the amplitude of the output. They can be used to model complex relationships between inputs and outputs or to find patterns in data. Thereby ANNs can be trained by machine learning techniques to approximate a function, when the complexity of the data or task makes the design of such function by hand impractical. Other tasks in which ANNs can be trained are classification, including pattern recognition, clustering and Data processing, including clustering." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000062
name: neural network [ncti]
def: "A computer algorithm to solve non-linear optimization problems. The algorithm was derived in analogy to the way the densely interconnected, parallel structure of the brain processes information." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C17429" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000063
name: online characterisation [ita]
name: Online-Charakterisierung
def: "Online characterisation is the characterization of the material properties during the process and on the real process line in order to be able to react to fluctuations during production." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000064
name: online optimization [ita]
name: Online-Optimierung
def: "In online optimization decisions are made directly in the real process section and without knowledge of future results. Also often the data of the problem instance is not complete." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000065
name: Optimierungsmethoden
name: optimization [ita]
def: "Optimizers are algorithms or methods used to solve optimization problems by minimize an error function (loss function) or to maximize the efficiency of production. Optimizers are mathematical functions which are dependent on model's learnable parameters i.e Weights & Biases." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000066
name: optimization [ncti]
def: "An activity that attempts to find the best solution to a problem." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C78561" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000067
name: Production-in-the-loop
name: Production-in-the-Loop [ita]
def: "Production-in-the-Loop describes a method, in which information from the production process is continuously recorded and the process is adapted to the changing framework conditions on the basis of this information." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000068
name: regression analysis [ita]
name: Regressionsanalyse
def: "Regression analysis consists of a set of machine learning methods that allow us to predict a continuous outcome variable (y) based on the value of one or multiple predictor variables (x). Regression is a supervised learning technique, in which Algorithems build a mathematical Modell or equation that defines y as a funktion of x." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000069
name: simulation environment [ita]
name: Simulationsumgebung
def: "A simulation environment is a virtual environment that maps/models the real process. A simulation model thus makes it possible to train control tasks using learning algorithms offline, i.e. not on the real system but on the computer. Neural networks can be used to create such model." []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000070
name: test dataset [ita]
name: Test-Dataset
def: "The test dataset is a subset of the dataset that is held back from training the model and given to the learning algorithm to test the trained model. Typically it consists of 20% to 30% of the original dataset. It is the sample of data used to provide an unbiased evaluation of a final model fit on the training dataset." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000071
name: train dataset [ita]
name: Train-Dataset
def: "The train dataset is a subset of the dataset that is given to the learning algorithm to train a model. Typically it consists of 70% to 80% of the original dataset. It is the sample of data used to fit the model." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000072
name: supervised learning [ita]
name: überwachtes Lernen
def: "Supervised learning is the machine learning task of learning a function that maps an input to an output based on example input-output pairs. It infers a function from labeled training data consisting of a set of training examples. In supervised learning, each example is a pair consisting of an input object (typically a vector) and a desired output value (target)." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000073
name: supervised learning [obi]
def: "A machine learning process using a function that maps an input to an output based on example input-output pairs. It infers a function from labeled training data consisting of a set of training examples." []
comment: http://purl.obolibrary.org/obo/obi.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000118 "supervised machine learning" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/OBI_0002588" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: isDefinedBy "OBI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000074
name: unsupervised learning [ita]
name: unüberwachtes Lernen
def: "Unsupervised learning is a type of algorithm that learns patterns from untagged data. The hope is that through mimicry, which is an important mode of learning in people, the machine is forced to build a compact internal representation of its world and then generate imaginative content from it. Unsupervised methods exhibit self-organization that captures patterns as probability densities or a combination of neural feature preferences." []
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000075
name: unsupervised learning [obi]
def: "A machine learning process that infers a function describing the structure of \"unlabeled\" data (i.e. data that has not been classified or categorized)." []
comment: http://purl.obolibrary.org/obo/obi.owl
is_a: IAO:0000104
property_value: coarseClassification "plan specification" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000118 "unsupervised machine learning" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/OBI_0002589" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: isDefinedBy "OBI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000076
name: validation dataset [ita]
name: Validation-Dataset
def: "The validation dataset is the sample of data used to provide an unbiased evaluation of a model fit on the training dataset while tuning model hyperparameters. The evaluation becomes more biased as skill on the validation dataset is incorporated into the model configuration." []
is_a: IAO:0000030
property_value: coarseClassification "information content entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000077
name: validation [ita]
name: Validierung
def: "Validation data is to \"validate\" that your neural network hasn't rather memorized your training data and has thus actually learned some meaningful aspects of the data so that the model can be later used (generalized) to unseen, held-out \"test dataset\"." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000078
name: validation [ncti]
def: "The act of validating; finding or testing the truth of something." []
comment: http://purl.obolibrary.org/obo/ncit.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/NCIT_C16237" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ncit.owl
property_value: isDefinedBy "NCTI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000079
name: validation [obi]
def: "a planned process with objective to check that the accuracy or the quality of a claim or prediction satisfies some criteria and which is assessed by comparing with independent results" []
comment: http://purl.obolibrary.org/obo/obi.owl
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://purl.obolibrary.org/obo/OBI_0302911" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: isDefinedBy "OBI" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000080
name: validation [edam]
def: "Validate some data." []
comment: http://edamontology.org
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Luis Ramos" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: http://purl.org/pav/lastUpdateOn "23.08.2022" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
property_value: IAO:0000119 "http://edamontology.org/operation_2428" xsd:string
property_value: IAO:0000412 http://edamontology.org
property_value: isDefinedBy "EDAM" xsd:string
creation_date: 23.08.2022
[Term]
id: DIGITRUBBER_000081
name: rolling [ita]
name: Walzen
def: "Rolling is the second of the three areas of the extrusion line. Where the material is homogenised." []
is_a: BFO:0000015
property_value: coarseClassification "process" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000082
name: twin screw extruder [ita]
name: Zweischneckenextruder
def: "Twin screw extruders have two screws, which have more shear and mixing capability than the single screw in a singel screw extruder. Depending on the direction of rotation of the screws, a distinction is made between counter-rotating and co-rotating twin-screw extruders." []
is_a: BFO:0000040
property_value: coarseClassification "material entity" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000083
name: Mischungstemperatur
name: Mixing temperature [ita]
def: "Control variable that specifies at which temperature mixing takes place." []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000084
name: Stamp pressure [ita]
name: Stemepeldruck
def: "Rücksprache DIK" []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000085
name: Drehzahl (Mischer)
name: rotation speed (Mixer) [ita]
def: "Control value that specifies at which speed mixing takes place" []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000086
name: Mischzeit
name: Mixing time [ita]
def: "Control value that specifies how long mixing takes place" []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000087
name: Drehmoment (Mischer)
name: Torque (mixer) [ita]
def: "Measured variable that indicates how high the torque is during mixing." []
is_a: BFO:0000019
property_value: coarseClassification "quality" xsd:string
property_value: http://purl.org/dc/elements/1.1/language "English" xsd:string
property_value: IAO:0000114 "uncurated" xsd:string
[Term]
id: DIGITRUBBER_000088
name: Torque (mixer) [om]
def: "Torque is the effectiveness of a force to produce rotation about an axis, measured by the product of the force and the perpendicular distance from the line of action of the force to the axis." []
comment: http://www.ontology-of-units-of-measure.org/resource/om-2
is_a: BFO:0000019