umap icon indicating copy to clipboard operation
umap copied to clipboard

Supervising training then unlabelled test data problem

Open carluqcor opened this issue 2 years ago • 0 comments

Hey there,

referring to this section of the documentation, a supervising training using fit and transforming the unllabeled test data could be done. However when I try this approach, I get the following results:

Training using y in fit Screenshot 2023-07-12 at 15 41 52

Test using transform Screenshot 2023-07-12 at 15 51 02

This is the UMAP that I'm using. My dataset has (9997, 250, 1) as shape.

reducer = umap.UMAP(
        n_jobs=-1,
        n_components=3,
        n_neighbors=30,
        random_state=0,
    ).fit(data, y=classes.values)

As you can see in the test UMAP, there is a connection path in within every cluster which I can't see happening in the MNIST example. But is this usual?

If further information is needed I will be glad to add it!

Thanks

carluqcor avatar Jul 12 '23 13:07 carluqcor