-
Notifications
You must be signed in to change notification settings - Fork 9
/
codemeta.json
140 lines (139 loc) · 4.55 KB
/
codemeta.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"@context": [
"https://doi.org/10.5063/schema/codemeta-2.0",
"http://schema.org",
"https://w3id.org/software-types"
],
"@type": "SoftwareSourceCode",
"identifier": "timbl",
"name": "TiMBL",
"version": "6.10",
"description": "TiMBL is an open source software package implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases.",
"license": "https://spdx.org/licenses/GPL-3.0",
"url": "https://languagemachines.github.io/timbl",
"author": [
{
"@type": "Person",
"givenName": "Ko",
"familyName": "van der Sloot",
"email": "[email protected]",
"affiliation": {
"@id": "https://www.ru.nl/clst",
"@type": "Organization",
"name": "Centre for Language and Speech Technology",
"url": "https://www.ru.nl/clst",
"parentOrganization": {
"@id": "https://www.ru.nl/cls",
"@type": "Organization",
"name": "Centre for Language Studies",
"url": "https://www.ru.nl/cls",
"parentOrganization": {
"@id": "https://www.ru.nl",
"name": "Radboud University",
"@type": "Organization",
"url": "https://www.ru.nl",
"location": {
"@type": "Place",
"name": "Nijmegen"
}
}
}
},
"position": 1
},
{
"@id": "https://orcid.org/0000-0003-2493-656X",
"@type": "Person",
"givenName": "Antal",
"familyName": "van den Bosch",
"email": "[email protected]",
"affiliation": { "@id": "https://cls.ru.nl" },
"position": 2
},
{
"@type": "Person",
"givenName": "Walter",
"familyName": "Daelemans",
"position": 3
},
{
"@id": "https://orcid.org/0000-0002-1046-0006",
"@type": "Person",
"givenName": "Maarten",
"familyName": "van Gompel",
"email": "[email protected]",
"affiliation": { "@id": "https://knaw.huc.nl" },
"position": 4
},
{
"@type": "Person",
"givenName": "Ton",
"familyName": "Weijters",
"position": 5
},
{
"@type": "Person",
"givenName": "Jakub",
"familyName": "Zavrel",
"position": 6
}
],
"sourceOrganization": { "@id": "https://www.ru.nl/clst" },
"programmingLanguage": {
"@type": "ComputerLanguage",
"identifier": "c++",
"name": "C++"
},
"operatingSystem": [ "Linux", "BSD", "macOS" ],
"codeRepository": "https://github.com/LanguageMachines/timbl",
"softwareRequirements": [
{
"@type": "SoftwareApplication",
"identifier": "libxml2",
"name": "libxml2"
},
{
"@type": "SoftwareApplication",
"identifier": "ticcutils",
"name": "ticcutils"
}
],
"readme": "https://github.com/LanguageMachines/timbl/blob/master/README.md",
"issueTracker": "https://github.com/LanguageMachines/timbl/issues",
"contIntegration": "https://travis-ci.org/LanguageMachines/timbl",
"releaseNotes": "https://github.com/LanguageMachines/timbl/releases",
"developmentStatus": "https://www.repostatus.org/#active",
"keywords": [ "nlp", "natural language processing", "memory based learning", "machine learning", "knn", "k-nearest neighbours", "decision tree" ],
"referencePublication": [
{
"@type": "TechArticle",
"name": "TiMBL: Tilburg Memory Based Learner, Reference Guide",
"author": [ "Walter Daelemans", "Jakub Zavrel", "Ko van der Sloot", "Antal van den Bosch" ],
"url": "https://github.com/LanguageMachines/timbl/raw/master/docs/Timbl_6.4_Manual.pdf"
},
{
"@type": "Book",
"name": "Memory-Based Language Processing",
"author": [ "Walter Daelemans", "Antal van den Bosch" ],
"url": "http://ilk.uvt.nl/mblp",
"publisher": "Cambridge University Press"
}
],
"dateCreated": "1998",
"targetProduct": [
{
"@type": "SoftwareLibrary",
"executableName": "libtimbl",
"name": "libtimbl",
"runtimePlatform": [ "Linux", "BSD", "macOS" ],
"description": "Memory-based Learning Library with API for C++"
},
{
"@type": "CommandLineApplication",
"executableName": "timbl",
"name": "timbl",
"runtimePlatform": [ "Linux", "BSD", "macOS" ],
"description": "Memory-based learner, command-line tool"
}
]
}