We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
example:
M = tSNE() predicted(M)
result: "tnse"
"tnse"
this causes tSNE when part of a sequence to fail because
predicted(M)
Error in slot(obj, name) : no slot of name "tsne" for this object of class "tSNE"
To work around this the predicted slot can be set when creating the object:
M = tSNE(predicted = 'Y')
The text was updated successfully, but these errors were encountered:
grlloyd
No branches or pull requests
example:
result:
"tnse"
this causes tSNE when part of a sequence to fail because
predicted(M)
To work around this the predicted slot can be set when creating the object:
The text was updated successfully, but these errors were encountered: