Model
object can be used to store and retrieve general metadata about the model, such as validation datasets or the model signature. It can also be used to list model versions of that model.model[field_path]
.model
when a field model/signature
exists.dict
) - A dictionary with values to assign, where keys become the paths of the fields.Boolean
, optional, default is False
) - If True
the client will wait before sending all tracked metadata to the server. This makes the call synchronous. For details, see the Connection modes guide.dict
with the model's metadata structure.path
and all data associated with them. See also .pop()
.path
completely and all data associated with them. See also .del()
.str
) - Path of the field or namespace to be removed.Boolean
, optional, default is False
) - If True
the client will first wait to send all tracked metadata to the server. This makes the call synchronous, see Connection modes guide..sync()
to synchronize local representation) or the metadata may have not reached the Neptune servers, so it may be impossible to fetch (use .wait()
to wait for all tracking calls to finish).str
) - The path to check for the existence of a field or a namespace.wait()
..stop()
will be automatically called when a script that initialized the connection finishes or when exiting Neptune context.int
or float
, optional, default is None
) - The method will wait for the specified time for all tracking calls to finish, before stopping the connection. If None
, it will wait for all tracking calls to finish..stop()
:.stop()
for any unneeded connections. You can also use Context Managers -- Neptune will automatically call .stop()
when exiting the Model
context:.stop()
once the connection is not needed.dict
containing all non-File Atom fields values.str
with the URL of the model in NeptuneTable
object containing a list of model versions. Use .to_pandas()
to convert it to a Pandas DataFrame.Boolean
, optional, default is False
) - If True
the process will only wait for data to be saved locally from memory, but will not wait for them to reach Neptune servers.Boolean
, optional, default is True
) - If True
the client will wait before sending all tracked metadata to the server. This makes the call synchronous, see Connection modes guide.to_pandas()
.Table
data to a pandas DataFrame
object.Table
data in the form of pandas.DataFrame
.