Skip to content

Commit

Permalink
Merge pull request #112 from MPI-Dortmund/change-default-neighbors
Browse files Browse the repository at this point in the history
change default neighbors to 64
  • Loading branch information
thorstenwagner authored Oct 2, 2024
2 parents c96b92e + 6798118 commit 2dd4e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tomotwin/modules/tools/umap.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def create_parser(self, parentparser : ArgumentParser) -> ArgumentParser:
help='Previously fitted model')
parser.add_argument('-n', '--ncomponents', type=int, required=False, default=2,
help='Number of components')
parser.add_argument('--neighbors', type=int, required=False, default=200,
parser.add_argument('--neighbors', type=int, required=False, default=64,
help='Previously fitted model')
parser.add_argument('--fit_sample_size', type=int, default=400000,
help='Sample size using for the fit of the umap')
Expand Down

0 comments on commit 2dd4e50

Please sign in to comment.