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.

@@ -37,6 +37,66 @@
37
37
  "default": null,
38
38
  "doc": "URL where the reference exist"
39
39
  },
40
+ {
41
+ "Relationship": {
42
+ "/*": {
43
+ "entityTypes": [
44
+ "dataJob",
45
+ "dataProcessInstance"
46
+ ],
47
+ "isLineage": true,
48
+ "name": "TrainedBy"
49
+ }
50
+ },
51
+ "type": [
52
+ "null",
53
+ {
54
+ "type": "array",
55
+ "items": "string"
56
+ }
57
+ ],
58
+ "name": "trainingJobs",
59
+ "default": null,
60
+ "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."
61
+ },
62
+ {
63
+ "Relationship": {
64
+ "/*": {
65
+ "entityTypes": [
66
+ "dataJob",
67
+ "dataProcessInstance"
68
+ ],
69
+ "isLineage": true,
70
+ "isUpstream": false,
71
+ "name": "UsedBy"
72
+ }
73
+ },
74
+ "type": [
75
+ "null",
76
+ {
77
+ "type": "array",
78
+ "items": "string"
79
+ }
80
+ ],
81
+ "name": "downstreamJobs",
82
+ "default": null,
83
+ "doc": "List of jobs or process instances (if any) that use the model or group."
84
+ },
85
+ {
86
+ "Searchable": {
87
+ "boostScore": 10.0,
88
+ "enableAutocomplete": true,
89
+ "fieldType": "WORD_GRAM",
90
+ "queryByDefault": true
91
+ },
92
+ "type": [
93
+ "null",
94
+ "string"
95
+ ],
96
+ "name": "name",
97
+ "default": null,
98
+ "doc": "Display name of the MLModel"
99
+ },
40
100
  {
41
101
  "Searchable": {
42
102
  "fieldType": "TEXT",
@@ -51,6 +111,7 @@
51
111
  "doc": "Documentation of the MLModel"
52
112
  },
53
113
  {
114
+ "deprecated": true,
54
115
  "type": [
55
116
  "null",
56
117
  "long"
@@ -59,6 +120,49 @@
59
120
  "default": null,
60
121
  "doc": "Date when the MLModel was developed"
61
122
  },
123
+ {
124
+ "type": [
125
+ "null",
126
+ {
127
+ "type": "record",
128
+ "name": "TimeStamp",
129
+ "namespace": "com.linkedin.pegasus2avro.common",
130
+ "fields": [
131
+ {
132
+ "type": "long",
133
+ "name": "time",
134
+ "doc": "When did the event occur"
135
+ },
136
+ {
137
+ "java": {
138
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
139
+ },
140
+ "type": [
141
+ "null",
142
+ "string"
143
+ ],
144
+ "name": "actor",
145
+ "default": null,
146
+ "doc": "Optional: The actor urn involved in the event.",
147
+ "Urn": "Urn"
148
+ }
149
+ ],
150
+ "doc": "A standard event timestamp"
151
+ }
152
+ ],
153
+ "name": "created",
154
+ "default": null,
155
+ "doc": "Audit stamp containing who created this and when"
156
+ },
157
+ {
158
+ "type": [
159
+ "null",
160
+ "com.linkedin.pegasus2avro.common.TimeStamp"
161
+ ],
162
+ "name": "lastModified",
163
+ "default": null,
164
+ "doc": "Date when the MLModel was last modified"
165
+ },
62
166
  {
63
167
  "type": [
64
168
  "null",
@@ -338,53 +442,6 @@
338
442
  "Urn": "Urn",
339
443
  "urn_is_array": true
340
444
  },
341
- {
342
- "Relationship": {
343
- "/*": {
344
- "entityTypes": [
345
- "dataJob"
346
- ],
347
- "isLineage": true,
348
- "name": "TrainedBy"
349
- }
350
- },
351
- "type": [
352
- "null",
353
- {
354
- "type": "array",
355
- "items": "string"
356
- }
357
- ],
358
- "name": "trainingJobs",
359
- "default": null,
360
- "doc": "List of jobs (if any) used to train the model",
361
- "Urn": "Urn",
362
- "urn_is_array": true
363
- },
364
- {
365
- "Relationship": {
366
- "/*": {
367
- "entityTypes": [
368
- "dataJob"
369
- ],
370
- "isLineage": true,
371
- "isUpstream": false,
372
- "name": "UsedBy"
373
- }
374
- },
375
- "type": [
376
- "null",
377
- {
378
- "type": "array",
379
- "items": "string"
380
- }
381
- ],
382
- "name": "downstreamJobs",
383
- "default": null,
384
- "doc": "List of jobs (if any) that use the model",
385
- "Urn": "Urn",
386
- "urn_is_array": true
387
- },
388
445
  {
389
446
  "Relationship": {
390
447
  "/*": {
@@ -0,0 +1,171 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "mlTrainingRunProperties"
5
+ },
6
+ "name": "MLTrainingRunProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.ml.metadata",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "/*": {
12
+ "fieldType": "TEXT",
13
+ "queryByDefault": true
14
+ }
15
+ },
16
+ "type": {
17
+ "type": "map",
18
+ "values": "string"
19
+ },
20
+ "name": "customProperties",
21
+ "default": {},
22
+ "doc": "Custom property bag."
23
+ },
24
+ {
25
+ "Searchable": {
26
+ "fieldType": "KEYWORD"
27
+ },
28
+ "java": {
29
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
30
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
31
+ },
32
+ "type": [
33
+ "null",
34
+ "string"
35
+ ],
36
+ "name": "externalUrl",
37
+ "default": null,
38
+ "doc": "URL where the reference exist"
39
+ },
40
+ {
41
+ "type": [
42
+ "null",
43
+ "string"
44
+ ],
45
+ "name": "id",
46
+ "default": null,
47
+ "doc": "Run Id of the ML Training Run"
48
+ },
49
+ {
50
+ "type": [
51
+ "null",
52
+ {
53
+ "type": "array",
54
+ "items": "string"
55
+ }
56
+ ],
57
+ "name": "outputUrls",
58
+ "default": null,
59
+ "doc": "List of URLs for the Outputs of the ML Training Run"
60
+ },
61
+ {
62
+ "type": [
63
+ "null",
64
+ {
65
+ "type": "array",
66
+ "items": {
67
+ "type": "record",
68
+ "Aspect": {
69
+ "name": "mlHyperParam"
70
+ },
71
+ "name": "MLHyperParam",
72
+ "namespace": "com.linkedin.pegasus2avro.ml.metadata",
73
+ "fields": [
74
+ {
75
+ "type": "string",
76
+ "name": "name",
77
+ "doc": "Name of the MLHyperParam"
78
+ },
79
+ {
80
+ "type": [
81
+ "null",
82
+ "string"
83
+ ],
84
+ "name": "description",
85
+ "default": null,
86
+ "doc": "Documentation of the MLHyperParam"
87
+ },
88
+ {
89
+ "type": [
90
+ "null",
91
+ "string"
92
+ ],
93
+ "name": "value",
94
+ "default": null,
95
+ "doc": "The value of the MLHyperParam"
96
+ },
97
+ {
98
+ "type": [
99
+ "null",
100
+ "long"
101
+ ],
102
+ "name": "createdAt",
103
+ "default": null,
104
+ "doc": "Date when the MLHyperParam was developed"
105
+ }
106
+ ],
107
+ "doc": "Properties associated with an ML Hyper Param"
108
+ }
109
+ }
110
+ ],
111
+ "name": "hyperParams",
112
+ "default": null,
113
+ "doc": "Hyperparameters of the ML Training Run"
114
+ },
115
+ {
116
+ "type": [
117
+ "null",
118
+ {
119
+ "type": "array",
120
+ "items": {
121
+ "type": "record",
122
+ "Aspect": {
123
+ "name": "mlMetric"
124
+ },
125
+ "name": "MLMetric",
126
+ "namespace": "com.linkedin.pegasus2avro.ml.metadata",
127
+ "fields": [
128
+ {
129
+ "type": "string",
130
+ "name": "name",
131
+ "doc": "Name of the mlMetric"
132
+ },
133
+ {
134
+ "type": [
135
+ "null",
136
+ "string"
137
+ ],
138
+ "name": "description",
139
+ "default": null,
140
+ "doc": "Documentation of the mlMetric"
141
+ },
142
+ {
143
+ "type": [
144
+ "null",
145
+ "string"
146
+ ],
147
+ "name": "value",
148
+ "default": null,
149
+ "doc": "The value of the mlMetric"
150
+ },
151
+ {
152
+ "type": [
153
+ "null",
154
+ "long"
155
+ ],
156
+ "name": "createdAt",
157
+ "default": null,
158
+ "doc": "Date when the mlMetric was developed"
159
+ }
160
+ ],
161
+ "doc": "Properties associated with an ML Metric"
162
+ }
163
+ }
164
+ ],
165
+ "name": "trainingMetrics",
166
+ "default": null,
167
+ "doc": "Metrics of the ML Training Run"
168
+ }
169
+ ],
170
+ "doc": "The inputs and outputs of this training run"
171
+ }
@@ -5769,6 +5769,66 @@
5769
5769
  "default": null,
5770
5770
  "doc": "URL where the reference exist"
5771
5771
  },
5772
+ {
5773
+ "Relationship": {
5774
+ "/*": {
5775
+ "entityTypes": [
5776
+ "dataJob",
5777
+ "dataProcessInstance"
5778
+ ],
5779
+ "isLineage": true,
5780
+ "name": "TrainedBy"
5781
+ }
5782
+ },
5783
+ "type": [
5784
+ "null",
5785
+ {
5786
+ "type": "array",
5787
+ "items": "string"
5788
+ }
5789
+ ],
5790
+ "name": "trainingJobs",
5791
+ "default": null,
5792
+ "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."
5793
+ },
5794
+ {
5795
+ "Relationship": {
5796
+ "/*": {
5797
+ "entityTypes": [
5798
+ "dataJob",
5799
+ "dataProcessInstance"
5800
+ ],
5801
+ "isLineage": true,
5802
+ "isUpstream": false,
5803
+ "name": "UsedBy"
5804
+ }
5805
+ },
5806
+ "type": [
5807
+ "null",
5808
+ {
5809
+ "type": "array",
5810
+ "items": "string"
5811
+ }
5812
+ ],
5813
+ "name": "downstreamJobs",
5814
+ "default": null,
5815
+ "doc": "List of jobs or process instances (if any) that use the model or group."
5816
+ },
5817
+ {
5818
+ "Searchable": {
5819
+ "boostScore": 10.0,
5820
+ "enableAutocomplete": true,
5821
+ "fieldType": "WORD_GRAM",
5822
+ "queryByDefault": true
5823
+ },
5824
+ "type": [
5825
+ "null",
5826
+ "string"
5827
+ ],
5828
+ "name": "name",
5829
+ "default": null,
5830
+ "doc": "Display name of the MLModel"
5831
+ },
5772
5832
  {
5773
5833
  "Searchable": {
5774
5834
  "fieldType": "TEXT",
@@ -5783,6 +5843,7 @@
5783
5843
  "doc": "Documentation of the MLModel"
5784
5844
  },
5785
5845
  {
5846
+ "deprecated": true,
5786
5847
  "type": [
5787
5848
  "null",
5788
5849
  "long"
@@ -5791,6 +5852,24 @@
5791
5852
  "default": null,
5792
5853
  "doc": "Date when the MLModel was developed"
5793
5854
  },
5855
+ {
5856
+ "type": [
5857
+ "null",
5858
+ "com.linkedin.pegasus2avro.common.TimeStamp"
5859
+ ],
5860
+ "name": "created",
5861
+ "default": null,
5862
+ "doc": "Audit stamp containing who created this and when"
5863
+ },
5864
+ {
5865
+ "type": [
5866
+ "null",
5867
+ "com.linkedin.pegasus2avro.common.TimeStamp"
5868
+ ],
5869
+ "name": "lastModified",
5870
+ "default": null,
5871
+ "doc": "Date when the MLModel was last modified"
5872
+ },
5794
5873
  {
5795
5874
  "type": [
5796
5875
  "null",
@@ -6027,53 +6106,6 @@
6027
6106
  "Urn": "Urn",
6028
6107
  "urn_is_array": true
6029
6108
  },
6030
- {
6031
- "Relationship": {
6032
- "/*": {
6033
- "entityTypes": [
6034
- "dataJob"
6035
- ],
6036
- "isLineage": true,
6037
- "name": "TrainedBy"
6038
- }
6039
- },
6040
- "type": [
6041
- "null",
6042
- {
6043
- "type": "array",
6044
- "items": "string"
6045
- }
6046
- ],
6047
- "name": "trainingJobs",
6048
- "default": null,
6049
- "doc": "List of jobs (if any) used to train the model",
6050
- "Urn": "Urn",
6051
- "urn_is_array": true
6052
- },
6053
- {
6054
- "Relationship": {
6055
- "/*": {
6056
- "entityTypes": [
6057
- "dataJob"
6058
- ],
6059
- "isLineage": true,
6060
- "isUpstream": false,
6061
- "name": "UsedBy"
6062
- }
6063
- },
6064
- "type": [
6065
- "null",
6066
- {
6067
- "type": "array",
6068
- "items": "string"
6069
- }
6070
- ],
6071
- "name": "downstreamJobs",
6072
- "default": null,
6073
- "doc": "List of jobs (if any) that use the model",
6074
- "Urn": "Urn",
6075
- "urn_is_array": true
6076
- },
6077
6109
  {
6078
6110
  "Relationship": {
6079
6111
  "/*": {
@@ -7488,6 +7520,66 @@
7488
7520
  "default": {},
7489
7521
  "doc": "Custom property bag."
7490
7522
  },
7523
+ {
7524
+ "Relationship": {
7525
+ "/*": {
7526
+ "entityTypes": [
7527
+ "dataJob",
7528
+ "dataProcessInstance"
7529
+ ],
7530
+ "isLineage": true,
7531
+ "name": "TrainedBy"
7532
+ }
7533
+ },
7534
+ "type": [
7535
+ "null",
7536
+ {
7537
+ "type": "array",
7538
+ "items": "string"
7539
+ }
7540
+ ],
7541
+ "name": "trainingJobs",
7542
+ "default": null,
7543
+ "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."
7544
+ },
7545
+ {
7546
+ "Relationship": {
7547
+ "/*": {
7548
+ "entityTypes": [
7549
+ "dataJob",
7550
+ "dataProcessInstance"
7551
+ ],
7552
+ "isLineage": true,
7553
+ "isUpstream": false,
7554
+ "name": "UsedBy"
7555
+ }
7556
+ },
7557
+ "type": [
7558
+ "null",
7559
+ {
7560
+ "type": "array",
7561
+ "items": "string"
7562
+ }
7563
+ ],
7564
+ "name": "downstreamJobs",
7565
+ "default": null,
7566
+ "doc": "List of jobs or process instances (if any) that use the model or group."
7567
+ },
7568
+ {
7569
+ "Searchable": {
7570
+ "boostScore": 10.0,
7571
+ "enableAutocomplete": true,
7572
+ "fieldType": "WORD_GRAM",
7573
+ "queryByDefault": true
7574
+ },
7575
+ "type": [
7576
+ "null",
7577
+ "string"
7578
+ ],
7579
+ "name": "name",
7580
+ "default": null,
7581
+ "doc": "Display name of the MLModelGroup"
7582
+ },
7491
7583
  {
7492
7584
  "Searchable": {
7493
7585
  "fieldType": "TEXT",
@@ -7502,6 +7594,7 @@
7502
7594
  "doc": "Documentation of the MLModelGroup"
7503
7595
  },
7504
7596
  {
7597
+ "deprecated": true,
7505
7598
  "type": [
7506
7599
  "null",
7507
7600
  "long"
@@ -7510,6 +7603,24 @@
7510
7603
  "default": null,
7511
7604
  "doc": "Date when the MLModelGroup was developed"
7512
7605
  },
7606
+ {
7607
+ "type": [
7608
+ "null",
7609
+ "com.linkedin.pegasus2avro.common.TimeStamp"
7610
+ ],
7611
+ "name": "created",
7612
+ "default": null,
7613
+ "doc": "Time and Actor who created the MLModelGroup"
7614
+ },
7615
+ {
7616
+ "type": [
7617
+ "null",
7618
+ "com.linkedin.pegasus2avro.common.TimeStamp"
7619
+ ],
7620
+ "name": "lastModified",
7621
+ "default": null,
7622
+ "doc": "Date when the MLModelGroup was last modified"
7623
+ },
7513
7624
  {
7514
7625
  "type": [
7515
7626
  "null",