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 141 142 143 144 145 146 147 148
|
{
"@context": [
"https://doi.org/10.5063/schema/codemeta-2.0",
"http://schema.org",
"https://w3id.org/software-types"
],
"@type": "SoftwareSourceCode",
"identifier": "dimbl",
"name": "DiMBL",
"version": "0.17",
"description": "DiMBL is an open source software package implementing a distributed front-end for TiMBL: A package that 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/dimbl",
"author": [
{
"@type": "Person",
"givenName": "Ko",
"familyName": "van der Sloot",
"email": "ko.vandersloot@let.ru.nl",
"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": "antal.vandenbosch@let.ru.nl",
"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": "proycon@anaproy.nl",
"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/dimbl",
"softwareRequirements": [
{
"@type": "SoftwareApplication",
"identifier": "libxml2",
"name": "libxml2"
},
{
"@type": "SoftwareApplication",
"identifier": "ticcutils",
"name": "ticcutils"
}
],
"readme": "https://github.com/LanguageMachines/dimbl/blob/master/README.md",
"issueTracker": "https://github.com/LanguageMachines/dimbl/issues",
"contIntegration": "https://travis-ci.org/LanguageMachines/dimbl",
"releaseNotes": "https://github.com/LanguageMachines/dimbl/releases",
"developmentStatus": "https://www.repostatus.org/#active",
"keywords": [ "multithreaded", "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"
}
]
{
"@type": "CommandLineApplication",
"executableName": "dimbl",
"name": "dimbl",
"runtimePlatform": [ "Linux", "BSD", "macOS" ],
"description": "Memory-based learner, command-line tool"
}
]
}
|