acryl-datahub-cloud 0.3.8rc11__py3-none-any.whl → 0.3.8rc13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/datahub_metadata_sharing/metadata_sharing_source.py +6 -1
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +18 -47
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ml/metadata/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +336 -133
- acryl_datahub_cloud/metadata/schema_classes.py +233 -27
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceKey.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceOutput.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/MLModelGroupProperties.avsc +104 -0
- acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +104 -47
- acryl_datahub_cloud/metadata/schemas/MLTrainingRunProperties.avsc +171 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +158 -47
- {acryl_datahub_cloud-0.3.8rc11.dist-info → acryl_datahub_cloud-0.3.8rc13.dist-info}/METADATA +51 -47
- {acryl_datahub_cloud-0.3.8rc11.dist-info → acryl_datahub_cloud-0.3.8rc13.dist-info}/RECORD +17 -16
- {acryl_datahub_cloud-0.3.8rc11.dist-info → acryl_datahub_cloud-0.3.8rc13.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.8rc11.dist-info → acryl_datahub_cloud-0.3.8rc13.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.8rc11.dist-info → acryl_datahub_cloud-0.3.8rc13.dist-info}/top_level.txt +0 -0
|
@@ -9766,6 +9766,66 @@
|
|
|
9766
9766
|
"default": {},
|
|
9767
9767
|
"doc": "Custom property bag."
|
|
9768
9768
|
},
|
|
9769
|
+
{
|
|
9770
|
+
"Relationship": {
|
|
9771
|
+
"/*": {
|
|
9772
|
+
"entityTypes": [
|
|
9773
|
+
"dataJob",
|
|
9774
|
+
"dataProcessInstance"
|
|
9775
|
+
],
|
|
9776
|
+
"isLineage": true,
|
|
9777
|
+
"name": "TrainedBy"
|
|
9778
|
+
}
|
|
9779
|
+
},
|
|
9780
|
+
"type": [
|
|
9781
|
+
"null",
|
|
9782
|
+
{
|
|
9783
|
+
"type": "array",
|
|
9784
|
+
"items": "string"
|
|
9785
|
+
}
|
|
9786
|
+
],
|
|
9787
|
+
"name": "trainingJobs",
|
|
9788
|
+
"default": null,
|
|
9789
|
+
"doc": "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect."
|
|
9790
|
+
},
|
|
9791
|
+
{
|
|
9792
|
+
"Relationship": {
|
|
9793
|
+
"/*": {
|
|
9794
|
+
"entityTypes": [
|
|
9795
|
+
"dataJob",
|
|
9796
|
+
"dataProcessInstance"
|
|
9797
|
+
],
|
|
9798
|
+
"isLineage": true,
|
|
9799
|
+
"isUpstream": false,
|
|
9800
|
+
"name": "UsedBy"
|
|
9801
|
+
}
|
|
9802
|
+
},
|
|
9803
|
+
"type": [
|
|
9804
|
+
"null",
|
|
9805
|
+
{
|
|
9806
|
+
"type": "array",
|
|
9807
|
+
"items": "string"
|
|
9808
|
+
}
|
|
9809
|
+
],
|
|
9810
|
+
"name": "downstreamJobs",
|
|
9811
|
+
"default": null,
|
|
9812
|
+
"doc": "List of jobs or process instances (if any) that use the model or group."
|
|
9813
|
+
},
|
|
9814
|
+
{
|
|
9815
|
+
"Searchable": {
|
|
9816
|
+
"boostScore": 10.0,
|
|
9817
|
+
"enableAutocomplete": true,
|
|
9818
|
+
"fieldType": "WORD_GRAM",
|
|
9819
|
+
"queryByDefault": true
|
|
9820
|
+
},
|
|
9821
|
+
"type": [
|
|
9822
|
+
"null",
|
|
9823
|
+
"string"
|
|
9824
|
+
],
|
|
9825
|
+
"name": "name",
|
|
9826
|
+
"default": null,
|
|
9827
|
+
"doc": "Display name of the MLModelGroup"
|
|
9828
|
+
},
|
|
9769
9829
|
{
|
|
9770
9830
|
"Searchable": {
|
|
9771
9831
|
"fieldType": "TEXT",
|
|
@@ -9780,6 +9840,7 @@
|
|
|
9780
9840
|
"doc": "Documentation of the MLModelGroup"
|
|
9781
9841
|
},
|
|
9782
9842
|
{
|
|
9843
|
+
"deprecated": true,
|
|
9783
9844
|
"type": [
|
|
9784
9845
|
"null",
|
|
9785
9846
|
"long"
|
|
@@ -9788,6 +9849,24 @@
|
|
|
9788
9849
|
"default": null,
|
|
9789
9850
|
"doc": "Date when the MLModelGroup was developed"
|
|
9790
9851
|
},
|
|
9852
|
+
{
|
|
9853
|
+
"type": [
|
|
9854
|
+
"null",
|
|
9855
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
9856
|
+
],
|
|
9857
|
+
"name": "created",
|
|
9858
|
+
"default": null,
|
|
9859
|
+
"doc": "Time and Actor who created the MLModelGroup"
|
|
9860
|
+
},
|
|
9861
|
+
{
|
|
9862
|
+
"type": [
|
|
9863
|
+
"null",
|
|
9864
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
9865
|
+
],
|
|
9866
|
+
"name": "lastModified",
|
|
9867
|
+
"default": null,
|
|
9868
|
+
"doc": "Date when the MLModelGroup was last modified"
|
|
9869
|
+
},
|
|
9791
9870
|
{
|
|
9792
9871
|
"type": [
|
|
9793
9872
|
"null",
|
|
@@ -9952,9 +10031,9 @@
|
|
|
9952
10031
|
{
|
|
9953
10032
|
"type": "record",
|
|
9954
10033
|
"Aspect": {
|
|
9955
|
-
"name": "
|
|
10034
|
+
"name": "mlTrainingRunProperties"
|
|
9956
10035
|
},
|
|
9957
|
-
"name": "
|
|
10036
|
+
"name": "MLTrainingRunProperties",
|
|
9958
10037
|
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
9959
10038
|
"fields": [
|
|
9960
10039
|
{
|
|
@@ -9974,100 +10053,229 @@
|
|
|
9974
10053
|
},
|
|
9975
10054
|
{
|
|
9976
10055
|
"Searchable": {
|
|
9977
|
-
"fieldType": "
|
|
9978
|
-
|
|
10056
|
+
"fieldType": "KEYWORD"
|
|
10057
|
+
},
|
|
10058
|
+
"java": {
|
|
10059
|
+
"class": "com.linkedin.pegasus2avro.common.url.Url",
|
|
10060
|
+
"coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
|
|
9979
10061
|
},
|
|
9980
10062
|
"type": [
|
|
9981
10063
|
"null",
|
|
9982
10064
|
"string"
|
|
9983
10065
|
],
|
|
9984
|
-
"name": "
|
|
10066
|
+
"name": "externalUrl",
|
|
9985
10067
|
"default": null,
|
|
9986
|
-
"doc": "
|
|
10068
|
+
"doc": "URL where the reference exist"
|
|
9987
10069
|
},
|
|
9988
10070
|
{
|
|
9989
10071
|
"type": [
|
|
9990
10072
|
"null",
|
|
9991
|
-
"
|
|
10073
|
+
"string"
|
|
9992
10074
|
],
|
|
9993
|
-
"name": "
|
|
10075
|
+
"name": "id",
|
|
9994
10076
|
"default": null,
|
|
9995
|
-
"doc": "
|
|
10077
|
+
"doc": "Run Id of the ML Training Run"
|
|
9996
10078
|
},
|
|
9997
10079
|
{
|
|
9998
10080
|
"type": [
|
|
9999
10081
|
"null",
|
|
10000
|
-
|
|
10082
|
+
{
|
|
10083
|
+
"type": "array",
|
|
10084
|
+
"items": "string"
|
|
10085
|
+
}
|
|
10001
10086
|
],
|
|
10002
|
-
"name": "
|
|
10087
|
+
"name": "outputUrls",
|
|
10003
10088
|
"default": null,
|
|
10004
|
-
"doc": "
|
|
10089
|
+
"doc": "List of URLs for the Outputs of the ML Training Run"
|
|
10005
10090
|
},
|
|
10006
10091
|
{
|
|
10007
|
-
"
|
|
10008
|
-
"
|
|
10009
|
-
|
|
10010
|
-
|
|
10011
|
-
|
|
10012
|
-
|
|
10013
|
-
|
|
10092
|
+
"type": [
|
|
10093
|
+
"null",
|
|
10094
|
+
{
|
|
10095
|
+
"type": "array",
|
|
10096
|
+
"items": {
|
|
10097
|
+
"type": "record",
|
|
10098
|
+
"Aspect": {
|
|
10099
|
+
"name": "mlHyperParam"
|
|
10100
|
+
},
|
|
10101
|
+
"name": "MLHyperParam",
|
|
10102
|
+
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
10103
|
+
"fields": [
|
|
10104
|
+
{
|
|
10105
|
+
"type": "string",
|
|
10106
|
+
"name": "name",
|
|
10107
|
+
"doc": "Name of the MLHyperParam"
|
|
10108
|
+
},
|
|
10109
|
+
{
|
|
10110
|
+
"type": [
|
|
10111
|
+
"null",
|
|
10112
|
+
"string"
|
|
10113
|
+
],
|
|
10114
|
+
"name": "description",
|
|
10115
|
+
"default": null,
|
|
10116
|
+
"doc": "Documentation of the MLHyperParam"
|
|
10117
|
+
},
|
|
10118
|
+
{
|
|
10119
|
+
"type": [
|
|
10120
|
+
"null",
|
|
10121
|
+
"string"
|
|
10122
|
+
],
|
|
10123
|
+
"name": "value",
|
|
10124
|
+
"default": null,
|
|
10125
|
+
"doc": "The value of the MLHyperParam"
|
|
10126
|
+
},
|
|
10127
|
+
{
|
|
10128
|
+
"type": [
|
|
10129
|
+
"null",
|
|
10130
|
+
"long"
|
|
10131
|
+
],
|
|
10132
|
+
"name": "createdAt",
|
|
10133
|
+
"default": null,
|
|
10134
|
+
"doc": "Date when the MLHyperParam was developed"
|
|
10135
|
+
}
|
|
10136
|
+
],
|
|
10137
|
+
"doc": "Properties associated with an ML Hyper Param"
|
|
10138
|
+
}
|
|
10014
10139
|
}
|
|
10015
|
-
|
|
10016
|
-
"
|
|
10017
|
-
"
|
|
10018
|
-
"
|
|
10019
|
-
|
|
10020
|
-
|
|
10021
|
-
|
|
10022
|
-
|
|
10023
|
-
|
|
10140
|
+
],
|
|
10141
|
+
"name": "hyperParams",
|
|
10142
|
+
"default": null,
|
|
10143
|
+
"doc": "Hyperparameters of the ML Training Run"
|
|
10144
|
+
},
|
|
10145
|
+
{
|
|
10146
|
+
"type": [
|
|
10147
|
+
"null",
|
|
10148
|
+
{
|
|
10149
|
+
"type": "array",
|
|
10150
|
+
"items": {
|
|
10151
|
+
"type": "record",
|
|
10152
|
+
"Aspect": {
|
|
10153
|
+
"name": "mlMetric"
|
|
10154
|
+
},
|
|
10155
|
+
"name": "MLMetric",
|
|
10156
|
+
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
10157
|
+
"fields": [
|
|
10158
|
+
{
|
|
10159
|
+
"type": "string",
|
|
10160
|
+
"name": "name",
|
|
10161
|
+
"doc": "Name of the mlMetric"
|
|
10162
|
+
},
|
|
10163
|
+
{
|
|
10164
|
+
"type": [
|
|
10165
|
+
"null",
|
|
10166
|
+
"string"
|
|
10167
|
+
],
|
|
10168
|
+
"name": "description",
|
|
10169
|
+
"default": null,
|
|
10170
|
+
"doc": "Documentation of the mlMetric"
|
|
10171
|
+
},
|
|
10172
|
+
{
|
|
10173
|
+
"type": [
|
|
10174
|
+
"null",
|
|
10175
|
+
"string"
|
|
10176
|
+
],
|
|
10177
|
+
"name": "value",
|
|
10178
|
+
"default": null,
|
|
10179
|
+
"doc": "The value of the mlMetric"
|
|
10180
|
+
},
|
|
10181
|
+
{
|
|
10182
|
+
"type": [
|
|
10183
|
+
"null",
|
|
10184
|
+
"long"
|
|
10185
|
+
],
|
|
10186
|
+
"name": "createdAt",
|
|
10187
|
+
"default": null,
|
|
10188
|
+
"doc": "Date when the mlMetric was developed"
|
|
10189
|
+
}
|
|
10190
|
+
],
|
|
10191
|
+
"doc": "Properties associated with an ML Metric"
|
|
10192
|
+
}
|
|
10193
|
+
}
|
|
10194
|
+
],
|
|
10195
|
+
"name": "trainingMetrics",
|
|
10196
|
+
"default": null,
|
|
10197
|
+
"doc": "Metrics of the ML Training Run"
|
|
10024
10198
|
}
|
|
10025
10199
|
],
|
|
10026
|
-
"doc": "
|
|
10200
|
+
"doc": "The inputs and outputs of this training run"
|
|
10027
10201
|
},
|
|
10028
10202
|
{
|
|
10029
10203
|
"type": "record",
|
|
10030
10204
|
"Aspect": {
|
|
10031
|
-
"name": "
|
|
10205
|
+
"name": "mlPrimaryKeyProperties"
|
|
10032
10206
|
},
|
|
10033
|
-
"name": "
|
|
10207
|
+
"name": "MLPrimaryKeyProperties",
|
|
10034
10208
|
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
10035
10209
|
"fields": [
|
|
10036
10210
|
{
|
|
10037
|
-
"
|
|
10038
|
-
|
|
10039
|
-
|
|
10211
|
+
"Searchable": {
|
|
10212
|
+
"/*": {
|
|
10213
|
+
"fieldType": "TEXT",
|
|
10214
|
+
"queryByDefault": true
|
|
10215
|
+
}
|
|
10216
|
+
},
|
|
10217
|
+
"type": {
|
|
10218
|
+
"type": "map",
|
|
10219
|
+
"values": "string"
|
|
10220
|
+
},
|
|
10221
|
+
"name": "customProperties",
|
|
10222
|
+
"default": {},
|
|
10223
|
+
"doc": "Custom property bag."
|
|
10040
10224
|
},
|
|
10041
10225
|
{
|
|
10226
|
+
"Searchable": {
|
|
10227
|
+
"fieldType": "TEXT",
|
|
10228
|
+
"hasValuesFieldName": "hasDescription"
|
|
10229
|
+
},
|
|
10042
10230
|
"type": [
|
|
10043
10231
|
"null",
|
|
10044
10232
|
"string"
|
|
10045
10233
|
],
|
|
10046
10234
|
"name": "description",
|
|
10047
10235
|
"default": null,
|
|
10048
|
-
"doc": "Documentation of the
|
|
10236
|
+
"doc": "Documentation of the MLPrimaryKey"
|
|
10049
10237
|
},
|
|
10050
10238
|
{
|
|
10051
10239
|
"type": [
|
|
10052
10240
|
"null",
|
|
10053
|
-
"
|
|
10241
|
+
"com.linkedin.pegasus2avro.common.MLFeatureDataType"
|
|
10054
10242
|
],
|
|
10055
|
-
"name": "
|
|
10243
|
+
"name": "dataType",
|
|
10056
10244
|
"default": null,
|
|
10057
|
-
"doc": "
|
|
10245
|
+
"doc": "Data Type of the MLPrimaryKey"
|
|
10058
10246
|
},
|
|
10059
10247
|
{
|
|
10060
10248
|
"type": [
|
|
10061
10249
|
"null",
|
|
10062
|
-
"
|
|
10250
|
+
"com.linkedin.pegasus2avro.common.VersionTag"
|
|
10063
10251
|
],
|
|
10064
|
-
"name": "
|
|
10252
|
+
"name": "version",
|
|
10065
10253
|
"default": null,
|
|
10066
|
-
"doc": "
|
|
10254
|
+
"doc": "Version of the MLPrimaryKey"
|
|
10255
|
+
},
|
|
10256
|
+
{
|
|
10257
|
+
"Relationship": {
|
|
10258
|
+
"/*": {
|
|
10259
|
+
"entityTypes": [
|
|
10260
|
+
"dataset"
|
|
10261
|
+
],
|
|
10262
|
+
"isLineage": true,
|
|
10263
|
+
"name": "DerivedFrom"
|
|
10264
|
+
}
|
|
10265
|
+
},
|
|
10266
|
+
"Urn": "Urn",
|
|
10267
|
+
"urn_is_array": true,
|
|
10268
|
+
"type": {
|
|
10269
|
+
"type": "array",
|
|
10270
|
+
"items": "string"
|
|
10271
|
+
},
|
|
10272
|
+
"name": "sources",
|
|
10273
|
+
"doc": "Source of the MLPrimaryKey"
|
|
10067
10274
|
}
|
|
10068
10275
|
],
|
|
10069
|
-
"doc": "Properties associated with
|
|
10276
|
+
"doc": "Properties associated with a MLPrimaryKey"
|
|
10070
10277
|
},
|
|
10278
|
+
"com.linkedin.pegasus2avro.ml.metadata.MLHyperParam",
|
|
10071
10279
|
{
|
|
10072
10280
|
"type": "record",
|
|
10073
10281
|
"Aspect": {
|
|
@@ -10448,6 +10656,66 @@
|
|
|
10448
10656
|
"default": null,
|
|
10449
10657
|
"doc": "URL where the reference exist"
|
|
10450
10658
|
},
|
|
10659
|
+
{
|
|
10660
|
+
"Relationship": {
|
|
10661
|
+
"/*": {
|
|
10662
|
+
"entityTypes": [
|
|
10663
|
+
"dataJob",
|
|
10664
|
+
"dataProcessInstance"
|
|
10665
|
+
],
|
|
10666
|
+
"isLineage": true,
|
|
10667
|
+
"name": "TrainedBy"
|
|
10668
|
+
}
|
|
10669
|
+
},
|
|
10670
|
+
"type": [
|
|
10671
|
+
"null",
|
|
10672
|
+
{
|
|
10673
|
+
"type": "array",
|
|
10674
|
+
"items": "string"
|
|
10675
|
+
}
|
|
10676
|
+
],
|
|
10677
|
+
"name": "trainingJobs",
|
|
10678
|
+
"default": null,
|
|
10679
|
+
"doc": "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect."
|
|
10680
|
+
},
|
|
10681
|
+
{
|
|
10682
|
+
"Relationship": {
|
|
10683
|
+
"/*": {
|
|
10684
|
+
"entityTypes": [
|
|
10685
|
+
"dataJob",
|
|
10686
|
+
"dataProcessInstance"
|
|
10687
|
+
],
|
|
10688
|
+
"isLineage": true,
|
|
10689
|
+
"isUpstream": false,
|
|
10690
|
+
"name": "UsedBy"
|
|
10691
|
+
}
|
|
10692
|
+
},
|
|
10693
|
+
"type": [
|
|
10694
|
+
"null",
|
|
10695
|
+
{
|
|
10696
|
+
"type": "array",
|
|
10697
|
+
"items": "string"
|
|
10698
|
+
}
|
|
10699
|
+
],
|
|
10700
|
+
"name": "downstreamJobs",
|
|
10701
|
+
"default": null,
|
|
10702
|
+
"doc": "List of jobs or process instances (if any) that use the model or group."
|
|
10703
|
+
},
|
|
10704
|
+
{
|
|
10705
|
+
"Searchable": {
|
|
10706
|
+
"boostScore": 10.0,
|
|
10707
|
+
"enableAutocomplete": true,
|
|
10708
|
+
"fieldType": "WORD_GRAM",
|
|
10709
|
+
"queryByDefault": true
|
|
10710
|
+
},
|
|
10711
|
+
"type": [
|
|
10712
|
+
"null",
|
|
10713
|
+
"string"
|
|
10714
|
+
],
|
|
10715
|
+
"name": "name",
|
|
10716
|
+
"default": null,
|
|
10717
|
+
"doc": "Display name of the MLModel"
|
|
10718
|
+
},
|
|
10451
10719
|
{
|
|
10452
10720
|
"Searchable": {
|
|
10453
10721
|
"fieldType": "TEXT",
|
|
@@ -10462,6 +10730,7 @@
|
|
|
10462
10730
|
"doc": "Documentation of the MLModel"
|
|
10463
10731
|
},
|
|
10464
10732
|
{
|
|
10733
|
+
"deprecated": true,
|
|
10465
10734
|
"type": [
|
|
10466
10735
|
"null",
|
|
10467
10736
|
"long"
|
|
@@ -10470,6 +10739,24 @@
|
|
|
10470
10739
|
"default": null,
|
|
10471
10740
|
"doc": "Date when the MLModel was developed"
|
|
10472
10741
|
},
|
|
10742
|
+
{
|
|
10743
|
+
"type": [
|
|
10744
|
+
"null",
|
|
10745
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
10746
|
+
],
|
|
10747
|
+
"name": "created",
|
|
10748
|
+
"default": null,
|
|
10749
|
+
"doc": "Audit stamp containing who created this and when"
|
|
10750
|
+
},
|
|
10751
|
+
{
|
|
10752
|
+
"type": [
|
|
10753
|
+
"null",
|
|
10754
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
10755
|
+
],
|
|
10756
|
+
"name": "lastModified",
|
|
10757
|
+
"default": null,
|
|
10758
|
+
"doc": "Date when the MLModel was last modified"
|
|
10759
|
+
},
|
|
10473
10760
|
{
|
|
10474
10761
|
"type": [
|
|
10475
10762
|
"null",
|
|
@@ -10526,49 +10813,7 @@
|
|
|
10526
10813
|
"null",
|
|
10527
10814
|
{
|
|
10528
10815
|
"type": "array",
|
|
10529
|
-
"items":
|
|
10530
|
-
"type": "record",
|
|
10531
|
-
"Aspect": {
|
|
10532
|
-
"name": "mlMetric"
|
|
10533
|
-
},
|
|
10534
|
-
"name": "MLMetric",
|
|
10535
|
-
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
10536
|
-
"fields": [
|
|
10537
|
-
{
|
|
10538
|
-
"type": "string",
|
|
10539
|
-
"name": "name",
|
|
10540
|
-
"doc": "Name of the mlMetric"
|
|
10541
|
-
},
|
|
10542
|
-
{
|
|
10543
|
-
"type": [
|
|
10544
|
-
"null",
|
|
10545
|
-
"string"
|
|
10546
|
-
],
|
|
10547
|
-
"name": "description",
|
|
10548
|
-
"default": null,
|
|
10549
|
-
"doc": "Documentation of the mlMetric"
|
|
10550
|
-
},
|
|
10551
|
-
{
|
|
10552
|
-
"type": [
|
|
10553
|
-
"null",
|
|
10554
|
-
"string"
|
|
10555
|
-
],
|
|
10556
|
-
"name": "value",
|
|
10557
|
-
"default": null,
|
|
10558
|
-
"doc": "The value of the mlMetric"
|
|
10559
|
-
},
|
|
10560
|
-
{
|
|
10561
|
-
"type": [
|
|
10562
|
-
"null",
|
|
10563
|
-
"long"
|
|
10564
|
-
],
|
|
10565
|
-
"name": "createdAt",
|
|
10566
|
-
"default": null,
|
|
10567
|
-
"doc": "Date when the mlMetric was developed"
|
|
10568
|
-
}
|
|
10569
|
-
],
|
|
10570
|
-
"doc": "Properties associated with an ML Metric"
|
|
10571
|
-
}
|
|
10816
|
+
"items": "com.linkedin.pegasus2avro.ml.metadata.MLMetric"
|
|
10572
10817
|
}
|
|
10573
10818
|
],
|
|
10574
10819
|
"name": "trainingMetrics",
|
|
@@ -10641,53 +10886,6 @@
|
|
|
10641
10886
|
"default": null,
|
|
10642
10887
|
"doc": "Deployments for the MLModel"
|
|
10643
10888
|
},
|
|
10644
|
-
{
|
|
10645
|
-
"Relationship": {
|
|
10646
|
-
"/*": {
|
|
10647
|
-
"entityTypes": [
|
|
10648
|
-
"dataJob"
|
|
10649
|
-
],
|
|
10650
|
-
"isLineage": true,
|
|
10651
|
-
"name": "TrainedBy"
|
|
10652
|
-
}
|
|
10653
|
-
},
|
|
10654
|
-
"Urn": "Urn",
|
|
10655
|
-
"urn_is_array": true,
|
|
10656
|
-
"type": [
|
|
10657
|
-
"null",
|
|
10658
|
-
{
|
|
10659
|
-
"type": "array",
|
|
10660
|
-
"items": "string"
|
|
10661
|
-
}
|
|
10662
|
-
],
|
|
10663
|
-
"name": "trainingJobs",
|
|
10664
|
-
"default": null,
|
|
10665
|
-
"doc": "List of jobs (if any) used to train the model"
|
|
10666
|
-
},
|
|
10667
|
-
{
|
|
10668
|
-
"Relationship": {
|
|
10669
|
-
"/*": {
|
|
10670
|
-
"entityTypes": [
|
|
10671
|
-
"dataJob"
|
|
10672
|
-
],
|
|
10673
|
-
"isLineage": true,
|
|
10674
|
-
"isUpstream": false,
|
|
10675
|
-
"name": "UsedBy"
|
|
10676
|
-
}
|
|
10677
|
-
},
|
|
10678
|
-
"Urn": "Urn",
|
|
10679
|
-
"urn_is_array": true,
|
|
10680
|
-
"type": [
|
|
10681
|
-
"null",
|
|
10682
|
-
{
|
|
10683
|
-
"type": "array",
|
|
10684
|
-
"items": "string"
|
|
10685
|
-
}
|
|
10686
|
-
],
|
|
10687
|
-
"name": "downstreamJobs",
|
|
10688
|
-
"default": null,
|
|
10689
|
-
"doc": "List of jobs (if any) that use the model"
|
|
10690
|
-
},
|
|
10691
10889
|
{
|
|
10692
10890
|
"Relationship": {
|
|
10693
10891
|
"/*": {
|
|
@@ -15892,6 +16090,10 @@
|
|
|
15892
16090
|
"dataProcessInstanceRunEvent",
|
|
15893
16091
|
"status",
|
|
15894
16092
|
"testResults",
|
|
16093
|
+
"dataPlatformInstance",
|
|
16094
|
+
"subTypes",
|
|
16095
|
+
"container",
|
|
16096
|
+
"mlTrainingRunProperties",
|
|
15895
16097
|
"lineageFeatures"
|
|
15896
16098
|
],
|
|
15897
16099
|
"entityDoc": "DataProcessInstance represents an instance of a datajob/jobflow run"
|
|
@@ -17276,7 +17478,8 @@
|
|
|
17276
17478
|
"Relationship": {
|
|
17277
17479
|
"/*": {
|
|
17278
17480
|
"entityTypes": [
|
|
17279
|
-
"dataset"
|
|
17481
|
+
"dataset",
|
|
17482
|
+
"mlModel"
|
|
17280
17483
|
],
|
|
17281
17484
|
"name": "Produces"
|
|
17282
17485
|
}
|