Project

class mangrove_surface.wrapper.project.ProjectWrapper

Project resource

classifier(name)

Return classifier named name

Parameters:name – project name
Raises:ClassifierDoesNotExist – if there is no classifier named name
classifiers()

List all classifiers

>>> pj.classifiers()
[
    Project_2018-03-20T15:39:18.120Z,
    Project_2018-03-20T15:40:02.880Z,
    Project_2018-03-20T15:40:45.242Z,
    MyClassifier
]
collection(name)

Return the collection named name

Parameters:name – collection name
collections()

List all collections

create_collection()

Create a new collection

A collection stores similar schemas of data sets.

Warning

Expert method: it should be only use to store new data set schemas

default_feature_set()

Return the default feature set

(see: mangrove.wrapper.feature_set)

description()

Project description

schemas(type=None)

List all schemas

Parameters:type – (optional) type could be train, test or export. It is to filter schemas of type type. By default all schemas are listed.
tags()

Return the project tags

update_description(new_description)

Update the project description

Parameters:new_description – the new project description
update_name(new_name)

Update the project name

Parameters:new_name – the new project name
update_tags(new_tags=[])

Update the project tags

Parameters:new_tags – the list of new tags