Skip to content

Commit

Permalink
sets automatic parameter optimization off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sadit committed Jul 6, 2021
1 parent fdea82e commit ffd775e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/graph/graph.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct NeighborhoodCallback <: Callback end
res::KnnResult = KnnResult(10)

callbacks::Dict{Symbol,Callback} = Dict(
:parameters => OptimizeParametersCallback(),
#:parameters => OptimizeParametersCallback(),
:hints => RandomHintsCallback(),
:neighborhood => NeighborhoodCallback()
)
Expand Down
1 change: 0 additions & 1 deletion src/indexes/seq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# License is Apache 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt

import Base: push!
import StatsBase: fit

export ExhaustiveSearch, search, push!

Expand Down

2 comments on commit ffd775e

@sadit
Copy link
Owner Author

@sadit sadit commented on ffd775e Jul 6, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/40362

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.1 -m "<description of version>" ffd775edc74c99bef0af08d336386a7c6a109f80
git push origin v0.6.1

Please sign in to comment.