Skip to content

Commit ffd8efb

Browse files
committed
added codemeta.json
1 parent f29b9ae commit ffd8efb

File tree

1 file changed

+102
-0
lines changed

1 file changed

+102
-0
lines changed

codemeta.json

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
{
2+
"@context": [
3+
"https://doi.org/10.5063/schema/codemeta-2.0",
4+
"http://schema.org"
5+
],
6+
"@type": "SoftwareSourceCode",
7+
"identifier": "mbt",
8+
"name": "mbt",
9+
"version": "3.2.13",
10+
"description": "MBT is a memory-based tagger-generator and tagger in one. The tagger-generator part can generate a sequence tagger on the basis of a training set of tagged sequences; the tagger part can tag new sequences. MBT can, for instance, be used to generate part-of-speech taggers or chunkers for natural language processing. It has also been used for named-entity recognition, information extraction in domain-specific texts, and disfluency chunking in transcribed speech. ",
11+
"license": "https://spdx.org/licenses/GPL-3.0",
12+
"url": "https://languagemachines.github.io/mbt",
13+
"author": [
14+
{
15+
"@type": "Person",
16+
"givenName": "Ko",
17+
"familyName": "van der Sloot",
18+
"email": "[email protected]",
19+
"affiliation": {
20+
"@id": "https://www.ru.nl/clst",
21+
"@type": "Organization",
22+
"name": "Centre for Language and Speech Technology",
23+
"url": "https://www.ru.nl/clst",
24+
"parentOrganization": {
25+
"@id": "https://www.ru.nl/cls",
26+
"@type": "Organization",
27+
"name": "Centre for Language Studies",
28+
"url": "https://www.ru.nl/cls",
29+
"parentOrganization": {
30+
"@id": "https://www.ru.nl",
31+
"name": "Radboud University",
32+
"@type": "Organization",
33+
"url": "https://www.ru.nl",
34+
"location": {
35+
"@type": "Place",
36+
"name": "Nijmegen"
37+
}
38+
}
39+
40+
}
41+
}
42+
},
43+
{
44+
"@id": "https://orcid.org/0000-0003-2493-656X",
45+
"@type": "Person",
46+
"givenName": "Antal",
47+
"familyName": "van den Bosch",
48+
"email": "[email protected]",
49+
"affiliation": { "@id": "https://cls.ru.nl" }
50+
},
51+
{
52+
"@type": "Person",
53+
"givenName": "Walter",
54+
"familyName": "Daelemans"
55+
},
56+
{
57+
"@type": "Person",
58+
"givenName": "Jakub",
59+
"familyName": "Zavrel"
60+
}
61+
],
62+
"sourceOrganization": { "@id": "https://www.ru.nl/clst" },
63+
"programmingLanguage": {
64+
"@type": "ComputerLanguage",
65+
"identifier": "c++",
66+
"name": "C++"
67+
},
68+
"operatingSystem": "POSIX",
69+
"codeRepository": "https://github.com/LanguageMachines/mbt",
70+
"softwareRequirements": [
71+
{
72+
"@type": "SoftwareApplication",
73+
"identifier": "libxml2",
74+
"name": "libxml2"
75+
},
76+
{
77+
"@type": "SoftwareApplication",
78+
"identifier": "ticcutils",
79+
"name": "ticcutils"
80+
},
81+
{
82+
"@type": "SoftwareApplication",
83+
"identifier": "timbl",
84+
"name": "timbl"
85+
}
86+
],
87+
"readme": "https://github.com/LanguageMachines/mbt/blob/master/README",
88+
"issueTracker": "https://github.com/LanguageMachines/mbt/issues",
89+
"contIntegration": "https://travis-ci.org/LanguageMachines/mbt",
90+
"releaseNotes": "https://github.com/LanguageMachines/mbt/releases",
91+
"developmentStatus": "active",
92+
"keywords": [ "nlp", "natural language processing", "memory based learning", "tagger", "machine learning" ],
93+
"referencePublication": [
94+
{
95+
"@type": "Book",
96+
"name": "Memory-Based Language Processing",
97+
"author": [ "Walter Daelemans", "Antal van den Bosch" ],
98+
"url": "http://ilk.uvt.nl/mblp",
99+
"publisher": "Cambridge University Press"
100+
}
101+
]
102+
}

0 commit comments

Comments
 (0)