-
Notifications
You must be signed in to change notification settings - Fork 1
/
META6.json
32 lines (32 loc) · 1.11 KB
/
META6.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"author": "cpan:TITSUKI",
"authors": [
"Itsuki Toyota"
],
"build-depends": [
],
"depends": [
],
"description": "A Raku Naive Bayes classifier implementation",
"license": "Artistic-2.0",
"name": "Algorithm::NaiveBayes",
"perl": "6.c",
"provides": {
"Algorithm::NaiveBayes": "lib/Algorithm/NaiveBayes.pm6",
"Algorithm::NaiveBayes::Classifiable": "lib/Algorithm/NaiveBayes/Classifiable.pm6",
"Algorithm::NaiveBayes::Classifier::Bernoulli": "lib/Algorithm/NaiveBayes/Classifier/Bernoulli.pm6",
"Algorithm::NaiveBayes::Classifier::Multinomial": "lib/Algorithm/NaiveBayes/Classifier/Multinomial.pm6",
"Algorithm::NaiveBayes::Document": "lib/Algorithm/NaiveBayes/Document.pm6",
"Algorithm::NaiveBayes::Model": "lib/Algorithm/NaiveBayes/Model.pm6",
"Algorithm::NaiveBayes::ModelUpdatable": "lib/Algorithm/NaiveBayes/ModelUpdatable.pm6",
"Algorithm::NaiveBayes::Vocabulary": "lib/Algorithm/NaiveBayes/Vocabulary.pm6"
},
"resources": [
],
"source-url": "git://github.com/titsuki/raku-Algorithm-NaiveBayes.git",
"tags": [
],
"test-depends": [
],
"version": "0.0.5"
}