All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by grammars with all dependencies

Search JAR files by class name

eidos_2.12 from group org.clulab (version 1.7.0)

Eidos is an open-domain machine reading system designed by the Computational Language Understanding (CLU) Lab at the University of Arizona for the World Modelers DARPA program. It uses a cascade of Odin grammars to extract events from free text.

Group: org.clulab Artifact: eidos_2.12
Show all versions Show documentation Show source 
 

0 downloads
Artifact eidos_2.12
Group org.clulab
Version 1.7.0
Last update 03. May 2022
Organization Computational Language Understanding (CLU) Lab
URL https://github.com/clulab/eidos
License Apache License, Version 2.0
Dependencies amount 10
Dependencies scala-library, eidos-eidoscommon_2.12, eidos-ontologies_2.12, geonames, timenorm_2.12, geonorm_2.12, common_2.12, Ontologies, play-json_2.12, upickle_2.12,
There are maybe transitive dependencies!

eidos_2.11 from group org.clulab (version 1.7.0)

Eidos is an open-domain machine reading system designed by the Computational Language Understanding (CLU) Lab at the University of Arizona for the World Modelers DARPA program. It uses a cascade of Odin grammars to extract events from free text.

Group: org.clulab Artifact: eidos_2.11
Show all versions Show documentation Show source 
 

0 downloads
Artifact eidos_2.11
Group org.clulab
Version 1.7.0
Last update 03. May 2022
Organization Computational Language Understanding (CLU) Lab
URL https://github.com/clulab/eidos
License Apache License, Version 2.0
Dependencies amount 10
Dependencies scala-library, eidos-eidoscommon_2.11, eidos-ontologies_2.11, geonames, timenorm_2.11, geonorm_2.11, common_2.11, Ontologies, play-json_2.11, upickle_2.11,
There are maybe transitive dependencies!

parboiled from group org.daisy.libs (version 1.0.0)

parboiled is a mixed Java/Scala library providing for lightweight and easy-to-use, yet powerful and elegant parsing of arbitrary input text based on Parsing expression grammars (PEGs). This bundle wraps two different libraries, parboiled-core and parboiled-java, as they offer classes in the same package path

Group: org.daisy.libs Artifact: parboiled
Show documentation Show source 
 

1 downloads
Artifact parboiled
Group org.daisy.libs
Version 1.0.0
Last update 17. September 2016
Organization sirthias
URL http://pegdown.org
License Apache License 2.0
Dependencies amount 6
Dependencies ${lib.artifactId}, parboiled-core, asm, asm-tree, asm-analysis, asm-util,
There are maybe transitive dependencies!

jgoslin from group org.lifs-tools (version 2.2.1)

This project is a parser, validator and normalizer implementation for shorthand lipid nomenclatures, base on the Grammar of Succinct Lipid Nomenclatures project. Goslin defines multiple grammers compatible with ANTLRv4 for different sources of shorthand lipid nomenclature. This allows to generate parsers based on the defined grammars, which provide immediate feedback whether a processed lipid shorthand notation string is compliant with a particular grammar, or not.

Group: org.lifs-tools Artifact: jgoslin
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact jgoslin
Group org.lifs-tools
Version 2.2.1
Last update 08. May 2024
Organization not specified
URL https://github.com/lifs-tools/jgoslin
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

bnfparser from group ca.gobits.bnf (version 1.0)

BNFParser is a Backus-Naur Form Framework (https://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form) for Java The BNFParser Framework offers 3 basic services of general interest to developers: 1. String Tokenization via the BNFTokenizerFactory and BNFToken classes 2. Property Key/Value mapper via PropertyParser 3. Text Parsing/Validation via Grammars

Group: ca.gobits.bnf Artifact: bnfparser
Show documentation Show source 
 

0 downloads
Artifact bnfparser
Group ca.gobits.bnf
Version 1.0
Last update 12. August 2013
Organization not specified
URL https://github.com/mfriesen/BNFParserJava
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies commons-io,
There are maybe transitive dependencies!

parser from group com.github.claasahl (version 2.0.1)

This is an open source library for parsing text-based inputs. PARSER makes use of context-free grammars to validate and parse sentences. Having specified such a grammar, the library takes care of parsing text-based inputs and returns a tree of nodes that represents the parsed sentence. Furthermore, it provides ways for interpreting and refining the returned tree of nodes. In essence, the library aims to remove the pain of parsing and instead allow focusing on processing and interpreting parsed results.

Group: com.github.claasahl Artifact: parser
Show all versions Show documentation Show source 
 

0 downloads
Artifact parser
Group com.github.claasahl
Version 2.0.1
Last update 28. February 2017
Organization not specified
URL https://github.com/claasahl/PARSER
License GNU Lesser General Public License (LGPL) - Version 3.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

adp from group de.cit-ec.tcs.alignment (version 3.1.1)

This module contains a more general approach to construct AlignmentAlgorithms by relying on the theoretical concept of Algebraic Dynamic Programming (ADP) as developed by Giegerich et al. ADP defines four ingredients for an alignment algorithm: 1.) A signature that defines the permitted alignment operations. Operations are just function templates with an associated arity, meaning the number of arguments it takes from the left sequence and from the right sequence. In the TCSAlignmentToolbox we have a fixed signature with the following operations: REPLACEMENT(1, 1), DELETION(1, 0), INSERTION(0, 1), SKIPDELETION(1, 0) and SKIPINSERTION(0, 1) 2.) A regular tree grammar that produces alignments, that is: sequences of operations, in a restricted fashion. 3.) An algebra that can translate such trees to a cost. In the TCSAlignmentToolbox this is a Comparator. 4.) A choice function, in case of the TCSAlignmentToolbox: the strict minimum or the soft minimum. An alignment algorithm in the TCSAlignmentToolbox sense of the word then is the combination of choice function and grammar. While we provide hardcoded versions of these combinations in the main package, the adp package allows you to create your own grammars. You can combine them with a choice function by instantiating one of the Algorithm classes provided in this package with a grammar of your choice. For example: AlignmentAlgorithm algo = new SoftADPScoreAlgorithm(my_grammar, comparator); creates an alignment algorithm that implicitly produces all possible alignments your grammar can construct with the given input, translates them to a cost using the algebra/comparator you provided and applies the soft minimum to return the score. This all gets efficient by dynamic programming. Note that there is runtime overhead when using this method in comparison with the hardcoded algorithms. But for complicated grammars this is a much easier way to go. For more information on the theory, please refer to my master's thesis: "Adaptive Affine Sequence Alignment using Algebraic Dynamic Programming"

Group: de.cit-ec.tcs.alignment Artifact: adp
Show all versions Show documentation Show source 
 

0 downloads
Artifact adp
Group de.cit-ec.tcs.alignment
Version 3.1.1
Last update 26. October 2018
Organization not specified
URL http://openresearch.cit-ec.de/projects/tcs
License The GNU Affero General Public License, Version 3
Dependencies amount 1
Dependencies algorithms,
There are maybe transitive dependencies!



Page 6 from 6 (items total 57)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy