Closed jona-sassenhagen closed 7 years ago
Running the example as-is, I get:
$python MulticoreTSNE/examples/test.py 2 downloading MNIST downloaded Traceback (most recent call last): File "MulticoreTSNE/examples/test.py", line 67, in <module> mnist_tsne = tsne.fit_transform(mnist, verbose=1) TypeError: fit_transform() got an unexpected keyword argument 'verbose'
This is not unexpected, as the fit_transform method does not take a verbose flag :)
fit_transform
verbose
Hi, thank you for spotting it! I actually wanted to pass this argument to TSNE constructor, can you please change it instead of removing?
Like this?
Yes! Thanks!
Running the example as-is, I get:
This is not unexpected, as the
fit_transform
method does not take averbose
flag :)