Skip to content

Commit

Permalink
adds compat info
Browse files Browse the repository at this point in the history
  • Loading branch information
sadit committed Jan 28, 2021
1 parent 57a5668 commit 04d1f29
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Expand Up @@ -6,7 +6,6 @@ version = "0.3.0"
[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
KCenters = "5d8de97f-65f8-4dd6-a15b-0f89c36a43ce"
Expand All @@ -23,6 +22,7 @@ CSV = "0.8.2"
CategoricalArrays = "0.8.3, 0.9"
IterTools = "1.3.0"
KNearestCenters = "0.2.4"
KCenters = "0.3"
MLDataUtils = "0.5.0"
SimilaritySearch = "0.4.2"
StatsBase = "0.30.0, 0.32.0"
Expand Down
7 changes: 6 additions & 1 deletion src/TextClassification.jl
Expand Up @@ -2,7 +2,12 @@
# License is Apache 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt

module TextClassification
using TextSearch, KNearestCenters
using SimilaritySearch
using KCenters
using KNearestCenters
using TextSearch

@info BOW
using CategoricalArrays
import KNearestCenters: random_configuration, combine_configurations

Expand Down
2 changes: 1 addition & 1 deletion src/microtc.jl
@@ -1,7 +1,7 @@
# This file is a part of TextClassification.jl
# License is Apache 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt

using SimilaritySearch, KCenters, KNearestCenters, TextSearch, MLDataUtils, LinearAlgebra
using MLDataUtils, LinearAlgebra
using Distributed, Random, StatsBase
import KNearestCenters: transform, search_params, combine_configurations, random_configuration
import TextSearch: vectorize
Expand Down

2 comments on commit 04d1f29

@sadit
Copy link
Owner Author

@sadit sadit commented on 04d1f29 Jan 28, 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 updated: JuliaRegistries/General/28857

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.3.0 -m "<description of version>" 04d1f29b975ef11497378507da6c5c6e71357b9d
git push origin v0.3.0

Please sign in to comment.