Skip to content

Commit

Permalink
Add Statistics to Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushk4 committed Aug 12, 2019
1 parent d3ff6e6 commit 9e36fcb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
25 changes: 13 additions & 12 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@ license = "MIT"
desc = "Julia package for text analysis"

[deps]
WordTokenizers = "796a5d58-b03d-544a-977e-18100b691f6e"
DataDeps = "124859b0-ceae-595e-8997-d05f6a7a8dfe"
Languages = "8ef0a80b-9436-5d2c-a485-80b904378c43"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
DataDeps = "124859b0-ceae-595e-8997-d05f6a7a8dfe"
Languages = "8ef0a80b-9436-5d2c-a485-80b904378c43"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
WordTokenizers = "796a5d58-b03d-544a-977e-18100b691f6e"

[compat]
julia = "1"
julia = "1.0"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion test/ner.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using WordTokenizers, TextAnalysis, Test
using WordTokenizers

@testset "NER" begin
ner = NERTagger()
Expand Down
9 changes: 3 additions & 6 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
println("Running tests:")
include("ner.jl")

module TestTextAnalysis
using SparseArrays
using Test
using Languages
using TextAnalysis
using WordTokenizers

println("Running tests:")

include("ner.jl")
include("coom.jl")
include("crf.jl")
include("tokenizer.jl")
Expand All @@ -27,5 +26,3 @@ include("bayes.jl")
include("taggingschemes.jl")
include("averagePerceptronTagger.jl")
include("evaluation_metrics.jl")

end

0 comments on commit 9e36fcb

Please sign in to comment.