File tree 2 files changed +32
-6
lines changed
2 files changed +32
-6
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,47 @@ of using a web service, so the user can produce concise and readable code.
12
12
Users that want to interact with OpenEO on a lower level, and have more control, can
13
13
use the lower level classes.
14
14
15
+
16
+ openeo
17
+ --------
18
+
15
19
.. autofunction :: openeo.connect
16
20
17
21
18
22
openeo.rest.datacube
19
- ----------------------------------
23
+ -----------------------
20
24
21
25
.. automodule :: openeo.rest.datacube
22
26
:members: DataCube
27
+ :inherited-members:
28
+
29
+
30
+ openeo.rest.vectorcube
31
+ ------------------------
32
+
33
+ .. automodule :: openeo.rest.vectorcube
34
+ :members: VectorCube
35
+ :inherited-members:
36
+
23
37
38
+ openeo.rest.mlmodel
39
+ ---------------------
24
40
25
- .. _datacube-api :
41
+ .. automodule :: openeo.rest.mlmodel
42
+ :members: MlModel
43
+ :inherited-members:
26
44
27
- openeo.api
28
- -----------
45
+
46
+ openeo.api.process
47
+ --------------------
29
48
30
49
.. automodule :: openeo.api.process
31
50
:members: Parameter
32
51
52
+
53
+ openeo.api.logs
54
+ -----------------
55
+
33
56
.. automodule :: openeo.api.logs
34
57
:members: LogEntry
35
58
@@ -42,7 +65,7 @@ openeo.rest.connection
42
65
43
66
44
67
openeo.rest.job
45
- ----------------------
68
+ ------------------
46
69
47
70
.. automodule :: openeo.rest.job
48
71
:members: RESTJob, JobResults, ResultAsset
Original file line number Diff line number Diff line change 14
14
15
15
class MlModel (_ProcessGraphAbstraction ):
16
16
"""
17
- A machine learning model accompanied with STAC metadata, including the ml-model extension.
17
+ A machine learning model.
18
+
19
+ It is the result of a training procedure, e.g. output of a ``fit_...`` process,
20
+ and can be used for prediction (classification or regression) with the corresponding ``predict_...`` process.
18
21
"""
19
22
def __init__ (self , graph : PGNode , connection : 'Connection' ):
20
23
super ().__init__ (pgnode = graph , connection = connection )
You can’t perform that action at this time.
0 commit comments