You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
objectClassifierLayer1extendsLearnable (node) {
deflabel= labelProperty1
deffeature= using(property2, property3,...)
}
objectClassifierLayer2extendsLearnable (node) {
deflabel= labelProperty2
deffeature= using(classifier1Labels, ,...) // using the prediction of the classifier in the previous layer
}
// defined in data-model valclassifier1Labels=newProperty(node){ x: Type=>ClassifierLayer1(x) }
But we should be able to skip the definition of the extra property classifier1Labels and just do:
Currently this is how we do pipeline:
But we should be able to skip the definition of the extra property
classifier1Labels
and just do:This is slightly trickier when the type of the node parameters for the two classifiers are not the same.
The text was updated successfully, but these errors were encountered: