Skip to content

Commit 4d16d96

Browse files
author
Stefan Hahmann
committed
Do not show any dimensionality reduction outputs as input for dimensionality reduction
1 parent 2468ca2 commit 4d16d96

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/mastodon/mamut/feature/dimensionalityreduction/util/InputDimension.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
import org.mastodon.graph.Vertex;
3939
import org.mastodon.mamut.feature.LinkTargetIdFeature;
4040
import org.mastodon.mamut.feature.SpotTrackIDFeature;
41-
import org.mastodon.mamut.feature.dimensionalityreduction.umap.feature.AbstractUmapFeature;
41+
import org.mastodon.mamut.feature.dimensionalityreduction.AbstractOutputFeature;
4242
import org.mastodon.mamut.feature.spot.SpotBranchIDFeature;
4343
import org.mastodon.util.FeatureUtils;
4444

@@ -162,7 +162,7 @@ public static < V extends Vertex< E >, E extends Edge< V > > List< InputDimensio
162162
excludedVertexFeatures.add( Cast.unchecked( SpotBranchIDFeature.class ) );
163163
for ( Feature< V > feature : vertexFeatures )
164164
{
165-
if ( excludedVertexFeatures.contains( feature.getClass() ) || feature instanceof AbstractUmapFeature )
165+
if ( excludedVertexFeatures.contains( feature.getClass() ) || feature instanceof AbstractOutputFeature )
166166
continue;
167167
for ( FeatureProjection< V > projection : feature.projections() )
168168
inputDimensions.add( InputDimension.fromVertexFeature( feature, projection ) );

0 commit comments

Comments
 (0)