-
Notifications
You must be signed in to change notification settings - Fork 3
/
aio-full.obo
3875 lines (3429 loc) · 206 KB
/
aio-full.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: https://w3id.org/aio/releases/2024-08-14/aio-full.owl
subsetdef: aio:ActivationFunctionSubset "Activation Function Subset"
subsetdef: aio:BiasSubset "Bias Subset"
subsetdef: aio:ClassSubset "Class Subset"
subsetdef: aio:FunctionSubset "Function Subset"
subsetdef: aio:InstanceNormalizationLayerSubset "Instance Normalization Layer Subset"
subsetdef: aio:LayerSubset "Layer Subset"
subsetdef: aio:MachineLearningSubset "Machine Learning Subset"
subsetdef: aio:ModelSubset "Model Subset"
subsetdef: aio:NetworkSubset "Network Subset"
subsetdef: aio:PreprocessingSubset "Preprocessing Subset"
idspace: aio https://w3id.org/aio/
idspace: dcterms http://purl.org/dc/terms/
idspace: oboInOwl http://www.geneontology.org/formats/oboInOwl#
ontology: https://w3id.org/aio/aio-full.owl
property_value: dcterms:description "This ontology models classes and relationships describing deep learning networks, their component layers and activation functions, as well as potential biases." xsd:string
property_value: dcterms:license http://creativecommons.org/licenses/by/4.0/
property_value: dcterms:title "Artificial Intelligence Ontology" xsd:string
property_value: owl:versionInfo "2024-08-14" xsd:string
[Term]
id: aio:AbstractRNNCell
name: AbstractRNNCell
def: "A layer representing an RNN cell that is the base class for implementing RNN cells with custom behavior." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/AbstractRNNCell]
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:ActivationLayer
name: Activation Layer
def: "A layer that applies an activation function to an output." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Activation]
comment: Applies an activation function to an output.
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:ActiveLearning
name: Active Learning
def: "A machine learning task focused on methods that interactively query a user or another information source to label new data points with the desired outputs." [https://en.wikipedia.org/wiki/Active_learning_(machine_learning)]
subset: aio:MachineLearningSubset
synonym: "Query Learning" EXACT []
is_a: aio:MachineLearningTask ! Machine Learning Task
[Term]
id: aio:ActivityBias
name: Activity Bias
def: "A use and interpretation bias occurring when systems/platforms get training data from their most active users rather than less active or inactive users." [https://en.wikipedia.org/wiki/Interpretive_bias]
subset: aio:BiasSubset
is_a: aio:UseAndInterpretationBias ! Use And Interpretation Bias
[Term]
id: aio:ActivityRegularizationLayer
name: ActivityRegularization Layer
def: "A regularization layer that applies an update to the cost function based on input activity." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/ActivityRegularization]
subset: aio:LayerSubset
is_a: aio:RegularizationLayer ! Regularization Layer
[Term]
id: aio:AdaptiveAvgPool1DLayer
name: AdaptiveAvgPool1D Layer
def: "A pooling layer that applies a 1D adaptive average pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AdaptiveAvgPool1D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AdaptiveAvgPool2DLayer
name: AdaptiveAvgPool2D Layer
def: "A pooling layer that applies a 2D adaptive average pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AdaptiveAvgPool2D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AdaptiveAvgPool3DLayer
name: AdaptiveAvgPool3D Layer
def: "A pooling layer that applies a 3D adaptive average pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AdaptiveAvgPool3D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AdaptiveMaxPool1DLayer
name: AdaptiveMaxPool1D Layer
def: "A pooling layer that applies a 1D adaptive max pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AdaptiveMaxPool1D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AdaptiveMaxPool2DLayer
name: AdaptiveMaxPool2D Layer
def: "A pooling layer that applies a 2D adaptive max pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AdaptiveMaxPool2D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AdaptiveMaxPool3DLayer
name: AdaptiveMaxPool3D Layer
def: "A pooling layer that applies a 3D adaptive max pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AdaptiveMaxPool3D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AddLayer
name: Add Layer
def: "A merging layer that adds a list of inputs taking as input a list of tensors all of the same shape." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Add]
comment: Layer that adds a list of inputs. It takes as input a list of tensors, all of the same shape, and returns a single tensor (also of the same shape).
subset: aio:LayerSubset
is_a: aio:MergingLayer ! Merging Layer
[Term]
id: aio:AdditionLayer
name: Addition Layer
def: "A layer that adds inputs from one or more other layers to cells or neurons of a target layer." []
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:AdditiveAttentionLayer
name: AdditiveAttention Layer
def: "An attention layer that implements additive attention also known as Bahdanau-style attention." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/AdditiveAttention]
comment: Additive attention layer, a.k.a. Bahdanau-style attention.
subset: aio:LayerSubset
is_a: aio:AttentionLayer ! Attention Layer
[Term]
id: aio:AlphaDropoutLayer
name: AlphaDropout Layer
def: "A regularization layer that applies Alpha Dropout to the input keeping mean and variance of inputs to ensure self-normalizing property." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/AlphaDropout]
comment: Applies Alpha Dropout to the input. Alpha Dropout is a Dropout that keeps mean and variance of inputs to their original values, in order to ensure the self-normalizing property even after this dropout. Alpha Dropout fits well to Scaled Exponential Linear Units by randomly setting activations to the negative saturation value.
subset: aio:LayerSubset
is_a: aio:RegularizationLayer ! Regularization Layer
[Term]
id: aio:AmplificationBias
name: Amplification Bias
def: "A processing bias arising when the distribution over prediction outputs is skewed compared to the prior distribution of the prediction target." [https://royalsocietypublishing.org/doi/10.1098/rspb.2019.0165#d1e5237]
subset: aio:BiasSubset
is_a: aio:ProcessingBias ! Processing Bias
[Term]
id: aio:AnchoringBias
name: Anchoring Bias
def: "An individual bias characterized by the influence of a reference point or anchor on decisions leading to insufficient adjustment from that anchor point." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:AnnotatorReportingBias
name: Annotator Reporting Bias
def: "An individual bias occurring when users rely on automation as a heuristic replacement for their own information seeking and processing." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:ArtificialNeuralNetwork
name: Artificial Neural Network
def: "A network based on a collection of connected units called artificial neurons modeled after biological neurons." [https://en.wikipedia.org/wiki/Artificial_neural_network]
comment: An artificial neural network (ANN) is based on a collection of connected units or nodes called artificial neurons, modeled after biological neurons, with connections transmitting signals processed by non-linear functions.
subset: aio:NetworkSubset
synonym: "ANN" EXACT []
synonym: "NN" EXACT []
is_a: aio:Network ! Network
[Term]
id: aio:AssociationRuleLearning
name: Association Rule Learning
def: "A supervised learning focused on a rule-based approach for discovering interesting relations between variables in large databases." [https://en.wikipedia.org/wiki/Association_rule_learning]
subset: aio:MachineLearningSubset
is_a: aio:SupervisedLearning ! Supervised Learning
[Term]
id: aio:AttentionLayer
name: Attention Layer
def: "A layer that implements dot-product attention also known as Luong-style attention." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Attention]
comment: Dot-product attention layer, a.k.a. Luong-style attention.
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:AutoEncoderNetwork
name: Auto Encoder Network
def: "An unsupervised pretrained network that learns efficient codings of unlabeled data by training to ignore insignificant data and regenerate input from encoding." [https://en.wikipedia.org/wiki/Autoencoder]
comment: Layers: Input, Hidden, Matched Output-Input
subset: aio:NetworkSubset
synonym: "AE" EXACT []
is_a: aio:UnsupervisedPretrainedNetwork ! Unsupervised Pretrained Network
relationship: BFO:0000051 aio:HiddenLayer ! has part Hidden Layer
relationship: BFO:0000051 aio:MatchedInputOutputLayer ! has part Matched Input-Output Layer
[Term]
id: aio:AutomationComplacencyBias
name: Automation Complacency Bias
def: "An individual bias characterized by over-reliance on automated systems leading to attenuated human skills." [https://doi.org/10.6028/NIST.SP.1270]
comment: Over-reliance on automated systems, leading to attenuated human skills, such as with spelling and autocorrect.
subset: aio:BiasSubset
synonym: "Automation Complaceny" EXACT []
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:AutoregressiveConditionalHeteroskedasticity
name: Autoregressive Conditional Heteroskedasticity
def: "A model that describes the variance of the current error term as a function of the previous periods' error terms, capturing volatility clustering. Used for time series data." []
subset: aio:ModelSubset
synonym: "ARCH" EXACT []
is_a: aio:Model ! Model
[Term]
id: aio:AutoregressiveDistributedLag
name: Autoregressive Distributed Lag
def: "A model that includes lagged values of both the dependent variable and one or more independent variables, capturing dynamic relationships over time. Used in time series analysis." []
subset: aio:ModelSubset
synonym: "ARDL" EXACT []
is_a: aio:Model ! Model
[Term]
id: aio:AutoregressiveIntegratedMovingAverage
name: Autoregressive Integrated Moving Average
def: "A model which combines autoregression (AR), differencing (I), and moving average (MA) components. Used for analyzing and forecasting time series data." []
subset: aio:ModelSubset
synonym: "ARIMA" EXACT []
is_a: aio:Model ! Model
[Term]
id: aio:AutoregressiveLanguageModel
name: Autoregressive Language Model
def: "A language model that generates text sequentially predicting one token at a time based on the previously generated tokens excelling at natural language generation tasks by modeling the probability distribution over sequences of tokens." []
subset: aio:ModelSubset
synonym: "generative language model" RELATED []
synonym: "sequence-to-sequence model" RELATED []
is_a: aio:LanguageModel ! Language Model
[Term]
id: aio:AutoregressiveMovingAverage
name: Autoregressive Moving Average
def: "A model that combines autoregressive (AR) and moving average (MA) components to represent time series data, suitable for stationary series without the need for differencing." []
subset: aio:ModelSubset
synonym: "ARMA" EXACT []
is_a: aio:Model ! Model
[Term]
id: aio:AvailabilityHeuristicBias
name: Availability Heuristic Bias
def: "An individual bias characterized by a mental shortcut where easily recalled information is overweighted in judgment and decision-making." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
synonym: "Availability Bias" EXACT []
synonym: "Availability Heuristic" EXACT []
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:AverageLayer
name: Average Layer
def: "A merging layer that averages a list of inputs element-wise taking as input a list of tensors all of the same shape." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Average]
comment: Layer that averages a list of inputs element-wise. It takes as input a list of tensors, all of the same shape, and returns a single tensor (also of the same shape).
subset: aio:LayerSubset
is_a: aio:MergingLayer ! Merging Layer
[Term]
id: aio:AveragePooling1DLayer
name: AveragePooling1D Layer
def: "A pooling layer that performs average pooling for temporal data." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/AveragePooling1D]
comment: Average pooling for temporal data. Downsamples the input representation by taking the average value over the window defined by pool_size. The window is shifted by strides. The resulting output when using "valid" padding option has a shape of: output_shape = (input_shape - pool_size + 1) / strides). The resulting output shape when using the "same" padding option is: output_shape = input_shape / strides.
subset: aio:LayerSubset
synonym: "AvgPool1D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AveragePooling2DLayer
name: AveragePooling2D Layer
def: "A pooling layer that performs average pooling for spatial data." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/AveragePooling2D]
comment: Average pooling operation for spatial data. Downsamples the input along its spatial dimensions (height and width) by taking the average value over an input window (of size defined by pool_size) for each channel of the input. The window is shifted by strides along each dimension. The resulting output when using "valid" padding option has a shape (number of rows or columns) of: output_shape = math.floor((input_shape - pool_size) / strides) + 1 (when input_shape >= pool_size). The resulting output shape when using the "same" padding option is: output_shape = math.floor((input_shape - 1) / strides) + 1.
subset: aio:LayerSubset
synonym: "AvgPool2D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AveragePooling3DLayer
name: AveragePooling3D Layer
def: "A pooling layer that performs average pooling for 3D data (spatial or spatio-temporal)." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/AveragePooling3D]
comment: Average pooling operation for 3D data (spatial or spatio-temporal). Downsamples the input along its spatial dimensions (depth, height, and width) by taking the average value over an input window (of size defined by pool_size) for each channel of the input. The window is shifted by strides along each dimension.
subset: aio:LayerSubset
synonym: "AvgPool3D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AvgPool1DLayer
name: AvgPool1D Layer
def: "A pooling layer that applies a 1D average pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AvgPool1D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AvgPool2DLayer
name: AvgPool2D Layer
def: "A pooling layer that applies a 2D average pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AvgPool2D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:AvgPool3DLayer
name: AvgPool3D Layer
def: "A pooling layer that applies a 3D average pooling over an input signal composed of several input planes." [https://pytorch.org/docs/stable/nn.html#pooling-layers]
subset: aio:LayerSubset
synonym: "AvgPool3D" EXACT []
is_a: aio:PoolingLayer ! Pooling Layer
[Term]
id: aio:BackfedInputLayer
name: Backfed Input Layer
def: "An input layer that receives values from another layer." []
subset: aio:LayerSubset
is_a: aio:InputLayer ! Input Layer
[Term]
id: aio:BatchNorm1DLayer
name: BatchNorm1D Layer
def: "A batch normalization layer that applies Batch Normalization over a 2D or 3D input." [https://pytorch.org/docs/stable/nn.html#normalization-layers]
comment: Applies Batch Normalization over a 2D or 3D input as described in the paper Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift .
subset: aio:LayerSubset
synonym: "BatchNorm1D" EXACT []
is_a: aio:BatchNormalizationLayer ! BatchNormalization Layer
[Term]
id: aio:BatchNorm2DLayer
name: BatchNorm2D Layer
def: "A batch normalization layer that applies Batch Normalization over a 4D input." [https://pytorch.org/docs/stable/nn.html#normalization-layers]
comment: Applies Batch Normalization over a 4D input (a mini-batch of 2D inputs with additional channel dimension) as described in the paper Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift .
subset: aio:LayerSubset
synonym: "BatchNorm2D" EXACT []
is_a: aio:BatchNormalizationLayer ! BatchNormalization Layer
[Term]
id: aio:BatchNorm3DLayer
name: BatchNorm3D Layer
def: "A batch normalization layer that applies Batch Normalization over a 5D input." [https://pytorch.org/docs/stable/nn.html#normalization-layers]
comment: Applies Batch Normalization over a 5D input (a mini-batch of 3D inputs with additional channel dimension) as described in the paper Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift .
subset: aio:LayerSubset
synonym: "BatchNorm3D" EXACT []
is_a: aio:BatchNormalizationLayer ! BatchNormalization Layer
[Term]
id: aio:BatchNormalizationLayer
name: BatchNormalization Layer
def: "A normalization layer that normalizes its inputs applying a transformation that maintains the mean close to 0 and the standard deviation close to 1." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/BatchNormalization]
comment: Layer that normalizes its inputs. Batch normalization applies a transformation that maintains the mean output close to 0 and the output standard deviation close to 1. Importantly, batch normalization works differently during training and during inference. During training (i.e. when using fit() or when calling the layer/model with the argument training=True), the layer normalizes its output using the mean and standard deviation of the current batch of inputs. That is to say, for each channel being normalized, the layer returns gamma * (batch - mean(batch)) / sqrt(var(batch) + epsilon) + beta, where: epsilon is small constant (configurable as part of the constructor arguments), gamma is a learned scaling factor (initialized as 1), which can be disabled by passing scale=False to the constructor. beta is a learned offset factor (initialized as 0), which can be disabled by passing center=False to the constructor. During inference (i.e. when using evaluate() or predict() or when calling the layer/model with the argument training=False (which is the default), the layer normalizes its output using a moving average of the mean and standard deviation of the batches it has seen during training. That is to say, it returns gamma * (batch - self.moving_mean) / sqrt(self.moving_var + epsilon) + beta. self.moving_mean and self.moving_var are non-trainable variables that are updated each time the layer in called in training mode, as such: moving_mean = moving_mean * momentum + mean(batch) * (1 - momentum) moving_var = moving_var * momentum + var(batch) * (1 - momentum).
subset: aio:LayerSubset
synonym: "BatchNorm" EXACT []
is_a: aio:NormalizationLayer ! Normalization Layer
[Term]
id: aio:BayesianNetwork
name: Bayesian Network
def: "A network that is a probabilistic graphical model representing variables and their conditional dependencies via a directed acyclic graph." [https://en.wikipedia.org/wiki/Bayesian_network]
subset: aio:NetworkSubset
is_a: aio:Network ! Network
[Term]
id: aio:BehavioralBias
name: Behavioral Bias
def: "An individual bias characterized by systematic distortions in user behavior across platforms or contexts or across users represented in different datasets." [https://doi.org/10.6028/NIST.SP.1270]
comment: Systematic distortions in user behavior across platforms or contexts, or across users represented in different datasets.
subset: aio:BiasSubset
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:Bias
name: Bias
def: "A systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others." [https://www.merriam-webster.com/dictionary/bias]
subset: aio:BiasSubset
[Term]
id: aio:Biclustering
name: Biclustering
def: "A machine learning task focused on methods that simultaneously cluster the rows and columns of a matrix to identify submatrices with coherent patterns." [https://en.wikipedia.org/wiki/Biclustering]
subset: aio:MachineLearningSubset
synonym: "Block Clustering" EXACT []
synonym: "Co-clustering" EXACT []
synonym: "Joint Clustering" EXACT []
synonym: "Two-mode Clustering" EXACT []
synonym: "Two-way Clustering" EXACT []
is_a: aio:MachineLearningTask ! Machine Learning Task
[Term]
id: aio:BidirectionalLayer
name: Bidirectional Layer
def: "A recurrent layer that is a bidirectional wrapper for RNNs." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Bidirectional]
comment: Bidirectional wrapper for RNNs.
subset: aio:LayerSubset
is_a: aio:RecurrentLayer ! Recurrent Layer
[Term]
id: aio:BidirectionalTransformerLanguageModel
name: Bidirectional Transformer Language Model
def: "A transformer language model such as BERT that uses the transformer architecture to build deep bidirectional representations by predicting masked tokens based on their context." [https://arxiv.org/abs/1810.04805, https://en.wikipedia.org/wiki/BERT_(language_model)]
subset: aio:ModelSubset
synonym: "BERT" EXACT []
synonym: "Bidirectional Transformer LM" EXACT []
is_a: aio:TransformerLanguageModel ! Transformer Language Model
[Term]
id: aio:BinaryClassification
name: Binary Classification
def: "A classification focused on methods that classify elements into two groups based on a classification rule." [https://en.wikipedia.org/wiki/Binary_classification]
subset: aio:MachineLearningSubset
is_a: aio:Classification ! Classification
[Term]
id: aio:BoltzmannMachineNetwork
name: Boltzmann Machine Network
def: "A symmetrically connected network that is a type of stochastic recurrent neural network and Markov random field." [https://en.wikipedia.org/wiki/Boltzmann_machine]
comment: Layers: Backfed Input, Probabilistic Hidden
subset: aio:NetworkSubset
synonym: "BM" EXACT []
synonym: "Sherrington–Kirkpatrick model with external field" EXACT []
synonym: "stochastic Hopfield network with hidden units" EXACT []
synonym: "stochastic Ising-Lenz-Little model" EXACT []
is_a: aio:SymmetricallyConnectedNetwork ! Symmetrically Connected Network
relationship: BFO:0000051 aio:BackfedInputLayer ! has part Backfed Input Layer
relationship: BFO:0000051 aio:ProbabilisticHiddenLayer ! has part Probabilistic Hidden Layer
[Term]
id: aio:CategoricalFeaturesPreprocessingLayer
name: Categorical Features Preprocessing Layer
def: "A layer that performs categorical data preprocessing operations." [https://keras.io/guides/preprocessing_layers/]
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:CategoryEncodingLayer
name: CategoryEncoding Layer
def: "A categorical features preprocessing layer that encodes integer features providing options for condensing data into a categorical encoding." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/CategoryEncoding]
comment: A preprocessing layer which encodes integer features. This layer provides options for condensing data into a categorical encoding when the total number of tokens are known in advance. It accepts integer values as inputs, and it outputs a dense or sparse representation of those inputs. For integer inputs where the total number of tokens is not known, use tf.keras.layers.IntegerLookup instead.
subset: aio:LayerSubset
is_a: aio:CategoricalFeaturesPreprocessingLayer ! Categorical Features Preprocessing Layer
[Term]
id: aio:CausalGraphicalModel
name: Causal Graphical Model
def: "A probabilistic graphical model used to encode assumptions about the data-generating process." [https://en.wikipedia.org/wiki/Causal_graph]
subset: aio:MachineLearningSubset
synonym: "Casaul Bayesian Network" EXACT []
synonym: "Casaul Graph" EXACT []
synonym: "DAG" EXACT []
synonym: "Directed Acyclic Graph" EXACT []
synonym: "Path Diagram" EXACT []
is_a: aio:ProbabilisticGraphicalModel ! Probabilistic Graphical Model
[Term]
id: aio:CausalLLM
name: Causal LLM
def: "A large language model that only attends to previous tokens in the sequence when generating text modeling the probability distribution autoregressively from left-to-right or causally." []
subset: aio:ModelSubset
synonym: "autoregressive" RELATED []
synonym: "Causal Large Language Model" EXACT []
synonym: "unidirectional" RELATED []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:CenterCropLayer
name: CenterCrop Layer
def: "An image preprocessing layer that crops the central portion of images to a target size." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/CenterCrop]
comment: A preprocessing layer which crops images. This layers crops the central portion of the images to a target size. If an image is smaller than the target size, it will be resized and cropped so as to return the largest possible window in the image that matches the target aspect ratio. Input pixel values can be of any range (e.g. [0., 1.) or [0, 255]) and of interger or floating point dtype. By default, the layer will output floats.
subset: aio:LayerSubset
is_a: aio:ImagePreprocessingLayer ! Image Preprocessing Layer
[Term]
id: aio:Classification
name: Classification
def: "A supervised learning focused on methods that distinguish and distribute kinds of \"things\" into different groups." [https://en.wikipedia.org/wiki/Classification_(general_theory)]
comment: Methods that distinguish and distribute kinds of "things" into different groups.
subset: aio:MachineLearningSubset
is_a: aio:SupervisedLearning ! Supervised Learning
[Term]
id: aio:Cleaning
name: Cleaning
def: "A data preparation that removes noise inconsistencies and irrelevant information from data to enhance its quality and prepare it for analysis or further processing." []
subset: aio:PreprocessingSubset
synonym: "Data cleaning" RELATED []
synonym: "Data Cleansing" EXACT []
synonym: "Standardization" EXACT []
synonym: "Text normalization" RELATED []
is_a: aio:DataPreparation ! Data Preparation
[Term]
id: aio:Clustering
name: Clustering
def: "A machine learning task focused on methods that group a set of objects such that objects in the same group are more similar to each other than to those in other groups." [https://en.wikipedia.org/wiki/Cluster_analysis]
subset: aio:MachineLearningSubset
synonym: "Cluster analysis" EXACT []
is_a: aio:MachineLearningTask ! Machine Learning Task
[Term]
id: aio:CognitiveBias
name: Cognitive Bias
def: "An individual bias characterized by deviations from rational judgment and decision-making including adaptive mental shortcuts known as heuristics." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:CompositionalGeneralizationLLM
name: Compositional Generalization LLM
def: "A large language model that is trained to understand and recombine the underlying compositional structures in language enabling better generalization to novel combinations and out-of-distribution examples." []
subset: aio:ModelSubset
synonym: "Compositional Generalization Large Language Model" EXACT []
synonym: "out-of-distribution generalization" RELATED []
synonym: "systematic generalization" RELATED []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:ComputationalBias
name: Computational Bias
def: "A bias caused by differences between results and facts in the process of data analysis (including the source of data the estimator chose) and analysis methods." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
synonym: "Statistical Bias" EXACT []
is_a: aio:Bias ! Bias
[Term]
id: aio:ConcatenateLayer
name: Concatenate Layer
def: "A merging layer that concatenates a list of inputs taking as input a list of tensors all of the same shape except for the concatenation axis." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Concatenate]
comment: Layer that concatenates a list of inputs. It takes as input a list of tensors, all of the same shape except for the concatenation axis, and returns a single tensor that is the concatenation of all inputs.
subset: aio:LayerSubset
is_a: aio:MergingLayer ! Merging Layer
[Term]
id: aio:ConceptDriftBias
name: Concept Drift Bias
def: "A use and interpretation bias due to the use of a system outside its planned domain of application causing performance gaps between laboratory settings and the real world." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
synonym: "Concept Drift" EXACT []
is_a: aio:UseAndInterpretationBias ! Use And Interpretation Bias
[Term]
id: aio:ConfirmationBias
name: Confirmation Bias
def: "An individual bias characterized by the tendency to prefer information that confirms existing beliefs influencing the search for interpretation of and recall of information." [https://doi.org/10.6028/NIST.SP.1270]
comment: The tendency to prefer information that confirms existing beliefs, influencing the search for, interpretation of, and recall of information.
subset: aio:BiasSubset
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:ConsumerBias
name: Consumer Bias
def: "An individual bias arising when an algorithm or platform provides users a venue to express their biases occurring from either side in a digital interaction." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
is_a: aio:IndividualBias ! Individual Bias
[Term]
id: aio:ContentProductionBias
name: Content Production Bias
def: "A use and interpretation bias arising from structural lexical semantic and syntactic differences in user-generated content." [https://doi.org/10.6028/NIST.SP.1270]
comment: Bias from structural, lexical, semantic, and syntactic differences in user-generated content.
subset: aio:BiasSubset
is_a: aio:UseAndInterpretationBias ! Use And Interpretation Bias
[Term]
id: aio:ContinualLearning
name: Continual Learning
def: "A deep neural network that learns sequential tasks without forgetting knowledge from preceding tasks and without access to old task data during new task training." [https://paperswithcode.com/task/continual-learning]
comment: Learning a model for sequential tasks without forgetting knowledge from preceding tasks, with no access to old task data during new task training.
subset: aio:NetworkSubset
synonym: "Incremental Learning" EXACT []
synonym: "Life-Long Learning" EXACT []
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
[Term]
id: aio:ContinualLearningLLM
name: Continual Learning LLM
def: "A large language model that continually acquires new knowledge and skills over time without forgetting previously learned information allowing the model to adapt and expand its capabilities as new data becomes available." []
subset: aio:ModelSubset
synonym: "catastrophic forgetting" RELATED []
synonym: "CL-Large Language Model" EXACT []
synonym: "Continual Learning Large Language Model" EXACT []
synonym: "lifelong learning" RELATED []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:ContrastiveLearning
name: Contrastive Learning
def: "A deep neural network self-supervised learning approach that learns to distinguish between similar and dissimilar data samples." [https://arxiv.org/abs/2202.14037]
comment: Contrastive learning is a self-supervised learning approach in which the model learns to distinguish between similar and dissimilar pairs of data samples. By maximizing the similarity between positive pairs (similar samples) and minimizing the similarity between negative pairs (dissimilar samples), the model learns to capture meaningful representations of the data. This method is particularly effective for representation learning and is widely used in tasks such as image classification, clustering, and retrieval. Contrastive learning techniques often employ loss functions such as the contrastive loss or the triplet loss to achieve these objectives.
subset: aio:NetworkSubset
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
[Term]
id: aio:ContrastiveLearningLLM
name: Contrastive Learning LLM
def: "A large language model that is trained to pull semantically similar samples closer together and push dissimilar samples apart in the representation space learning high-quality features useful for downstream tasks." []
subset: aio:ModelSubset
synonym: "Representation learning" RELATED []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:ControllableLLM
name: Controllable LLM
def: "A large language model that allows for explicit control over certain attributes of the generated text such as style tone topic or other desired characteristics through conditioning or specialized training objectives." []
comment: A controllable LLM allows for explicit control over certain attributes of the generated text, such as style, tone, topic, or other desired characteristics, through conditioning or specialized training objectives.
subset: aio:ModelSubset
synonym: "conditional generation" RELATED []
synonym: "Controllable Large Language Model" EXACT []
synonym: "guided generation" RELATED []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:ConvLSTM1DLayer
name: ConvLSTM1D Layer
def: "A convolutional layer that implements a 1D Convolutional LSTM similar to an LSTM but with convolutional input and recurrent transformations." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/ConvLSTM1D]
comment: 1D Convolutional LSTM. Similar to an LSTM layer, but the input transformations and recurrent transformations are both convolutional.
subset: aio:LayerSubset
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:ConvLSTM2DLayer
name: ConvLSTM2D Layer
def: "A convolutional layer that implements a 2D Convolutional LSTM similar to an LSTM but with convolutional input and recurrent transformations." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/ConvLSTM2D]
comment: 2D Convolutional LSTM. Similar to an LSTM layer, but the input transformations and recurrent transformations are both convolutional.
subset: aio:LayerSubset
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:ConvLSTM3DLayer
name: ConvLSTM3D Layer
def: "A convolutional layer that implements a 3D Convolutional LSTM similar to an LSTM but with convolutional input and recurrent transformations." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/ConvLSTM3D]
comment: 3D Convolutional LSTM. Similar to an LSTM layer, but the input transformations and recurrent transformations are both convolutional.
subset: aio:LayerSubset
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:Convolution1DLayer
name: Convolution1D Layer
def: "A convolutional layer that implements 1D convolution (e.g. temporal convolution)." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Conv1D]
subset: aio:LayerSubset
synonym: "Conv1D" EXACT []
synonym: "Conv1D Layer" EXACT []
synonym: "Convolution1D" EXACT []
synonym: "nn.Conv1D" EXACT []
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:Convolution1DTransposeLayer
name: Convolution1DTranspose Layer
def: "A convolutional layer that implements transposed 1D convolution sometimes called deconvolution." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Conv1DTranspose]
comment: Transposed convolution layer (sometimes called Deconvolution). The need for transposed convolutions generally arises from the desire to use a transformation going in the opposite direction of a normal convolution, i.e., from something that has the shape of the output of some convolution to something that has the shape of its input while maintaining a connectivity pattern that is compatible with said convolution. When using this layer as the first layer in a model, provide the keyword argument input_shape (tuple of integers or None, does not include the sample axis), e.g. input_shape=(128, 3) for data with 128 time steps and 3 channels.
subset: aio:LayerSubset
synonym: "Conv1DTranspose Layer" EXACT []
synonym: "Convolution1DTranspose" EXACT []
synonym: "ConvTranspose1D" EXACT []
synonym: "nn.ConvTranspose1D" EXACT []
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:Convolution2DLayer
name: Convolution2D Layer
def: "A convolutional layer that implements 2D convolution (e.g. spatial convolution over images)." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Conv2D]
comment: 2D convolution layer (e.g. spatial convolution over images). This layer creates a convolution kernel that is convolved with the layer input to produce a tensor of outputs. If use_bias is True, a bias vector is created and added to the outputs. Finally, if activation is not None, it is applied to the outputs as well. When using this layer as the first layer in a model, provide the keyword argument input_shape (tuple of integers or None, does not include the sample axis), e.g. input_shape=(128, 128, 3) for 128x128 RGB pictures in data_format="channels_last". You can use None when a dimension has variable size.
subset: aio:LayerSubset
synonym: "Conv2D" EXACT []
synonym: "Conv2D Layer" EXACT []
synonym: "Convolution2D" EXACT []
synonym: "nn.Conv2D" EXACT []
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:Convolution2DTransposeLayer
name: Convolution2DTranspose Layer
def: "A convolutional layer that implements transposed 2D convolution" [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Conv2DTranspose]
comment: Transposed convolution layer (sometimes called Deconvolution).
subset: aio:LayerSubset
synonym: "Conv2DTranspose Layer" EXACT []
synonym: "Convolution2DTranspose" EXACT []
synonym: "ConvTranspose2D" EXACT []
synonym: "nn.ConvTranspose2D" EXACT []
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:Convolution3DLayer
name: Convolution3D Layer
def: "A convolutional layer that implements 3D convolution (e.g. spatial convolution over volumes)." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Conv3D]
comment: 3D convolution layer (e.g. spatial convolution over volumes). This layer creates a convolution kernel that is convolved with the layer input to produce a tensor of outputs. If use_bias is True, a bias vector is created and added to the outputs. Finally, if activation is not None, it is applied to the outputs as well. When using this layer as the first layer in a model, provide the keyword argument input_shape (tuple of integers or None, does not include the sample axis), e.g. input_shape=(128, 128, 128, 1) for 128x128x128 volumes with a single channel, in data_format="channels_last".
subset: aio:LayerSubset
synonym: "Conv3D" EXACT []
synonym: "Conv3D Layer" EXACT []
synonym: "Convolution3D" EXACT []
synonym: "nn.Conv3D" EXACT []
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:Convolution3DTransposeLayer
name: Convolution3DTranspose Layer
def: "A convolutional layer that implements transposed 3D convolution" [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Conv3DTranspose]
comment: Transposed convolution layer (sometimes called Deconvolution). The need for transposed convolutions generally arises from the desire to use a transformation going in the opposite direction of a normal convolution, i.e., from something that has the shape of the output of some convolution to something that has the shape of its input while maintaining a connectivity pattern that is compatible with said convolution. When using this layer as the first layer in a model, provide the keyword argument input_shape (tuple of integers or None, does not include the sample axis), e.g. input_shape=(128, 128, 128, 3) for a 128x128x128 volume with 3 channels if data_format="channels_last".
subset: aio:LayerSubset
synonym: "Conv3DTranspose Layer" EXACT []
synonym: "Convolution3DTranspose" EXACT []
synonym: "ConvTranspose3D" EXACT []
synonym: "nn.ConvTranspose3D" EXACT []
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:ConvolutionalLayer
name: Convolutional Layer
def: "A layer that contains a set of filters (or kernels) parameters of which are to be learned throughout the training." [https://www.sciencedirect.com/topics/engineering/convolutional-layer]
comment: A convolutional layer is the main building block of a CNN. It contains a set of filters (or kernels), parameters of which are to be learned throughout the training. The size of the filters is usually smaller than the actual image. Each filter convolves with the image and creates an activation map.
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:Cropping1DLayer
name: Cropping1D Layer
def: "A reshaping layer that crops along the time dimension (axis 1) for 1D input." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Cropping1D]
comment: Cropping layer for 1D input (e.g. temporal sequence). It crops along the time dimension (axis 1).
subset: aio:LayerSubset
is_a: aio:ReshapingLayer ! Reshaping Layer
[Term]
id: aio:Cropping2DLayer
name: Cropping2D Layer
def: "A layer that crops along spatial dimensions (i.e. height and width) for 2D input." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Cropping2D]
comment: Cropping layer for 2D input (e.g. picture). It crops along spatial dimensions, i.e. height and width.
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:Cropping3DLayer
name: Cropping3D Layer
def: "A layer that crops along spatial dimensions (depth" [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Cropping3D]
comment: Cropping layer for 3D data (e.g. spatial or spatio-temporal).
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:CrossDomainLLM
name: Cross-Domain LLM
def: "A large language model that performs well across a wide range of domains without significant loss in performance, facilitated by advanced domain adaptation techniques." []
subset: aio:ModelSubset
synonym: "cross-domain transfer" RELATED []
synonym: "domain adaptation" RELATED []
synonym: "Domain-General LLM" EXACT []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:CurriculumLearning
name: Curriculum Learning
def: "A training strategy in machine learning where models are trained on data in a meaningful order starting with simpler examples and gradually increasing the complexity to improve learning efficiency and model performance." []
subset: aio:PreprocessingSubset
synonym: "Complexity grading" RELATED []
synonym: "Sequential Learning" EXACT []
synonym: "Sequential learning" RELATED []
synonym: "Structured Learning" EXACT []
is_a: aio:TrainingStrategies ! Training Strategies
[Term]
id: aio:CurriculumLearningLLM
name: Curriculum Learning LLM
def: "A large language model that is trained by presenting learning examples in a meaningful order from simple to complex mimicking the learning trajectory followed by humans." []
subset: aio:ModelSubset
synonym: "Learning progression" RELATED []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:DataAugmentation
name: Data Augmentation
def: "A data enhancement used to increase the diversity and quantity of training data by applying various transformations such as rotation scaling flipping and cropping to existing data samples enhancing the robustness and performance of machine learning models." []
subset: aio:PreprocessingSubset
synonym: "Data Enrichment" EXACT []
synonym: "Data Expansion" EXACT []
synonym: "Paraphrasing" RELATED []
synonym: "Synonym replacement" RELATED []
is_a: aio:DataEnhancement ! DataEnhancement
[Term]
id: aio:DataDredgingBias
name: Data Dredging Bias
def: "A use and interpretation bias where testing many hypotheses in a dataset may yield apparent statistical significance even when results are nonsignificant." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
synonym: "Data Dredging" EXACT []
is_a: aio:UseAndInterpretationBias ! Use And Interpretation Bias
[Term]
id: aio:DataEnhancement
name: DataEnhancement
def: "A preprocessing used to improve the quality diversity and volume of data available for training machine learning models, such as data augmentation synthesis and enrichment to enhance model robustness and accuracy." []
subset: aio:PreprocessingSubset
is_a: aio:Preprocessing ! Preprocessing
[Term]
id: aio:DataGenerationBias
name: Data Generation Bias
def: "A selection and sampling bias arising from adding synthetic or redundant data samples to a dataset." [https://en.wikipedia.org/wiki/Selection_bias]
comment: Bias from adding synthetic or redundant data samples to a dataset.
subset: aio:BiasSubset
is_a: aio:SelectionAndSamplingBias ! Selection And Sampling Bias
[Term]
id: aio:DataImputation
name: Data Imputation
def: "A machine learning task focused on methods that replace missing data with substituted values." [https://en.wikipedia.org/wiki/Imputation_(statistics)]
comment: Methods that replace missing data with substituted values.
subset: aio:MachineLearningSubset
is_a: aio:MachineLearningTask ! Machine Learning Task
[Term]
id: aio:DataPreparation
name: Data Preparation
def: "A preprocessing that cleans, transforms and organizes raw data into a suitable format for analysis and modeling, ensuring the quality and relevance of the data for machine learning tasks." []
subset: aio:PreprocessingSubset
synonym: "Data Assembly" EXACT []
synonym: "Data Curation" EXACT []
synonym: "Data Processing" EXACT []
is_a: aio:Preprocessing ! Preprocessing
[Term]
id: aio:DatatoTextLLM
name: Data-to-Text LLM
def: "A large language model that generates natural language descriptions from structured data sources like tables, graphs, and knowledge bases, requiring grounding in meaning representations." []
subset: aio:ModelSubset
synonym: "Meaning representation" EXACT []
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:DecisionTree
name: Decision Tree
def: "A classification that uses a tree-like model of decisions and their possible consequences including chance event outcomes resource costs and utilities." [https://en.wikipedia.org/wiki/Decision_tree]
comment: A decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utilities.
subset: aio:MachineLearningSubset
is_a: aio:Classification ! Classification
[Term]
id: aio:DecoderLLM
name: Decoder LLM
def: "A large language model that uses a decoder-only architecture consisting of only a decoder trained to predict the next token in a sequence given the previous tokens." [https://www.practicalai.io/understanding-transformer-model-architectures/#\:~\:text=Encoder]
comment: A decoder-only architecture consisting of only a decoder, trained to predict the next token in a sequence given the previous tokens. Unlike the encoder-decoder architecture, it does not have an explicit encoder and encodes information implicitly in the hidden state of the decoder, updated at each step of the generation process.
subset: aio:ModelSubset
is_a: aio:LargeLanguageModel ! Large Language Model
[Term]
id: aio:DeconvolutionalNetwork
name: Deconvolutional Network
def: "A deep neural network that uses deconvolution for unsupervised construction of hierarchical image representations." [https://ieeexplore.ieee.org/document/5539957]
comment: Layers: Input, Kernel, Convolutional/Pool, Output
subset: aio:NetworkSubset
synonym: "DN" EXACT []
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
relationship: BFO:0000051 aio:ConvolutionalLayer ! has part Convolutional Layer
relationship: BFO:0000051 aio:InputLayer ! has part Input Layer
relationship: BFO:0000051 aio:KernelLayer ! has part Kernel Layer
relationship: BFO:0000051 aio:OutputLayer ! has part Output Layer
relationship: BFO:0000051 aio:PoolingLayer ! has part Pooling Layer
[Term]
id: aio:DeepActiveLearning
name: Deep Active Learning
def: "A deep neural network that combines deep learning and active learning to maximize model performance while annotating the fewest samples possible." [https://arxiv.org/pdf/2009.00236.pdf]
subset: aio:NetworkSubset
synonym: "DeepAL" EXACT []
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
[Term]
id: aio:DeepBeliefNetwork
name: Deep Belief Network
def: "An unsupervised pretrained network composed of multiple layers of latent variables that learns to probabilistically reconstruct inputs and perform classification." [https://en.wikipedia.org/wiki/Deep_belief_network]
comment: Layers: Backfed Input, Probabilistic Hidden, Hidden, Matched Output-Input
subset: aio:NetworkSubset
synonym: "DBN" EXACT []
is_a: aio:UnsupervisedPretrainedNetwork ! Unsupervised Pretrained Network
relationship: BFO:0000051 aio:BackfedInputLayer ! has part Backfed Input Layer
relationship: BFO:0000051 aio:MatchedInputOutputLayer ! has part Matched Input-Output Layer
relationship: BFO:0000051 aio:ProbabilisticHiddenLayer ! has part Probabilistic Hidden Layer
[Term]
id: aio:DeepConvolutionalInverseGraphicsNetwork
name: Deep Convolutional Inverse Graphics Network
def: "An autoencoder network that learns interpretable disentangled image representations through convolution and de-convolution layers trained with the stochastic gradient variational Bayes algorithm." []
comment: Layers: Input, Kernel, Convolutional/Pool, Probabilistic Hidden, Convolutional/Pool, Kernel, Output
subset: aio:NetworkSubset
synonym: "DCIGN" EXACT []
is_a: aio:AutoEncoderNetwork ! Auto Encoder Network
relationship: BFO:0000051 aio:ConvolutionalLayer ! has part Convolutional Layer
relationship: BFO:0000051 aio:KernelLayer ! has part Kernel Layer
relationship: BFO:0000051 aio:OutputLayer ! has part Output Layer
relationship: BFO:0000051 aio:PoolingLayer ! has part Pooling Layer
relationship: BFO:0000051 aio:ProbabilisticHiddenLayer ! has part Probabilistic Hidden Layer
[Term]
id: aio:DeepConvolutionalNetwork
name: Deep Convolutional Network
def: "A deep neural network specialized for analyzing visual imagery using shared-weight architecture and translation-equivariant feature maps." [https://en.wikipedia.org/wiki/Convolutional_neural_network]
comment: Layers: Input, Kernel, Convolutional/Pool, Hidden, Output
subset: aio:NetworkSubset
synonym: "CNN" EXACT []
synonym: "ConvNet" EXACT []
synonym: "Convolutional Neural Network" EXACT []
synonym: "DCN" EXACT []
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
relationship: BFO:0000051 aio:ConvolutionalLayer ! has part Convolutional Layer
relationship: BFO:0000051 aio:HiddenLayer ! has part Hidden Layer
relationship: BFO:0000051 aio:InputLayer ! has part Input Layer
relationship: BFO:0000051 aio:KernelLayer ! has part Kernel Layer
relationship: BFO:0000051 aio:OutputLayer ! has part Output Layer
relationship: BFO:0000051 aio:PoolingLayer ! has part Pooling Layer
[Term]
id: aio:DeepFeedForwardNetwork
name: Deep Feed-Forward Network
def: "A deep neural network that processes information in one direction—from input nodes through hidden nodes to output nodes—without cycles or loops." [https://en.wikipedia.org/wiki/Feedforward_neural_network]
comment: Layers: Input, Hidden, Output
subset: aio:NetworkSubset
synonym: "DFF" EXACT []
synonym: "MLP" EXACT []
synonym: "Multilayer Perceptoron" EXACT []
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
relationship: BFO:0000051 aio:HiddenLayer ! has part Hidden Layer
relationship: BFO:0000051 aio:InputLayer ! has part Input Layer
relationship: BFO:0000051 aio:OutputLayer ! has part Output Layer
[Term]
id: aio:DeepNeuralNetwork
name: Deep Neural Network
def: "An artificial neural network characterized by multiple hidden layers between the input and output layers." []
comment: A deep neural network (DNN) is a type of artificial neural network (ANN) characterized by multiple hidden layers between the input and output layers. Each layer consists of interconnected neurons that process and transmit information. DNNs can model complex patterns and representations in data through their hierarchical structure, where each layer extracts increasingly abstract features from the input. DNNs are widely used in various applications, including image and speech recognition, natural language processing, and more, due to their ability to learn and generalize from large amounts of data.
subset: aio:NetworkSubset
synonym: "DNN" EXACT []
is_a: aio:ArtificialNeuralNetwork ! Artificial Neural Network
[Term]
id: aio:DeepTransferLearning
name: Deep Transfer Learning
def: "A deep neural network that relaxes the hypothesis that training data must be independent and identically distributed with test data to address insufficient training data." [https://arxiv.org/abs/1808.01974]
subset: aio:NetworkSubset
is_a: aio:DeepNeuralNetwork ! Deep Neural Network
[Term]
id: aio:DenoisingAutoEncoder
name: Denoising Auto Encoder
def: "An autoencoder network trained to reconstruct the original undistorted input from a partially corrupted input." [https://doi.org/10.1145/1390156.1390294]
comment: Layers: Noisy Input, Hidden, Matched Output-Input
subset: aio:NetworkSubset
synonym: "DAE" EXACT []
synonym: "Denoising Autoencoder" EXACT []
is_a: aio:AutoEncoderNetwork ! Auto Encoder Network
relationship: BFO:0000051 aio:NoisyInputLayer ! has part Noisy Input Layer
[Term]
id: aio:DenseFeaturesLayer
name: DenseFeatures Layer
def: "A layer that produces a dense tensor based on given feature columns." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/DenseFeatures]
comment: A layer that produces a dense Tensor based on given feature_columns. Generally a single example in training data is described with FeatureColumns. At the first layer of the model, this column oriented data should be converted to a single Tensor. This layer can be called multiple times with different features. This is the V2 version of this layer that uses name_scopes to create variables instead of variable_scopes. But this approach currently lacks support for partitioned variables. In that case, use the V1 version instead.
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:DenseLayer
name: Dense Layer
def: "A layer that is a regular densely-connected neural network layer." [https://www.tensorflow.org/api_docs/python/tf/keras/layers/Dense]
comment: Just your regular densely-connected NN layer.
subset: aio:LayerSubset
is_a: aio:Layer ! Layer
[Term]
id: aio:DeploymentBias
name: Deployment Bias
def: "A group bias arising when systems are used as decision aids for humans since the human intermediary may act on predictions in ways that are typically not modeled in the system." [https://doi.org/10.6028/NIST.SP.1270]
subset: aio:BiasSubset
is_a: aio:GroupBias ! Group Bias
[Term]
id: aio:DepthwiseConv1DLayer
name: DepthwiseConv1D Layer
def: "A convolutional layer that performs depthwise 1D convolution" [https://www.tensorflow.org/api_docs/python/tf/keras/layers/DepthwiseConv1D]
comment: Depthwise 1D convolution. Depthwise convolution is a type of convolution in which each input channel is convolved with a different kernel (called a depthwise kernel). You can understand depthwise convolution as the first step in a depthwise separable convolution. It is implemented via the following steps: Split the input into individual channels. Convolve each channel with an individual depthwise kernel with depth_multiplier output channels. Concatenate the convolved outputs along the channels axis. Unlike a regular 1D convolution, depthwise convolution does not mix information across different input channels. The depth_multiplier argument determines how many filter are applied to one input channel. As such, it controls the amount of output channels that are generated per input channel in the depthwise step.
subset: aio:LayerSubset
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:DepthwiseConv2DLayer
name: DepthwiseConv2D Layer
def: "A convolutional layer that performs depthwise 2D convolution" [https://www.tensorflow.org/api_docs/python/tf/keras/layers/DepthwiseConv2D]
comment: Depthwise 2D convolution.
subset: aio:LayerSubset
is_a: aio:ConvolutionalLayer ! Convolutional Layer
[Term]
id: aio:DetectionBias
name: Detection Bias
def: "A selection and sampling bias characterized by systematic differences between groups in how outcomes are determined potentially over- or underestimating effect size." [https://doi.org/10.6028/NIST.SP.1270]
comment: Systematic differences between groups in how outcomes are determined, potentially over- or underestimating effect size.
subset: aio:BiasSubset
is_a: aio:SelectionAndSamplingBias ! Selection And Sampling Bias
[Term]
id: aio:DialogueLLM
name: Dialogue LLM
def: "A large language model that is optimized for engaging in multi-turn conversations understanding context and generating relevant coherent responses continuously over many dialogue turns." []