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

Download JAR files tagged by either with all dependencies

Search JAR files by class name

crypto4j-parent from group org.beiter.michael.crypto4j (version 1.0)

The crypto4j library provides a simple and pluggable crypto abstraction library for Java, including both cryptographic primitives and the artifacts defined in the JOSE standard. This library separates the cryptographic primitives from the JOSE artifacts. The library uses the algorithms available through JCA (JCE). The implementations of the cryptographic primitives provided in this library rely on the standard JCA implementation, and can be configured and extended through the JCA mechanisms. The JOSE portion of the library allows custom extensions by either replacing the provided JOSE artifact implementations with custom implementations, or by adding new JOSE artifacts, for instance in form of additional algorithms, which is particularly useful in case that the JOSE standard is updated or in case custom extensions to the JOSE standard should be implemented. The implementations available in this library generally come in two variants: a standard implementation of the primitives and advanced algorithms, and a high-performance implementation that takes advantage of implementation patterns that do not compromise cryprographic security, but speed up the overall processing time.

Group: org.beiter.michael.crypto4j Artifact: crypto4j-parent
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact crypto4j-parent
Group org.beiter.michael.crypto4j
Version 1.0
Last update 23. January 2017
Organization Michael Beiter <[email protected]>
URL http://mbeiter.github.io/crypto4j/docs/${project.version}/
License BSD 3-clause Revised License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

alpheusafpparser from group com.github.afpdev (version 0.2.2)

Alpheus AFP Parser is a library and parser for the IBM Advanced Function Presentation (AFP) document/print stream format. Alpheus covers all AFP specifications: MO:DCA, BCOCA, CMOCA, FOCA, GOCA, IOCA, and PTOCA. It is a complete implementation. Every Structured Field, Repeating Group, and Triplet is fully implemented as Java class. Alpheus AFP Parser was written from scratch and has no external dependencies. Copyright 2015,2016 Rudolf Fiala Alpheus AFP Parser is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Group: com.github.afpdev Artifact: alpheusafpparser
Show documentation Show source 
 

6 downloads
Artifact alpheusafpparser
Group com.github.afpdev
Version 0.2.2
Last update 03. October 2016
Organization not specified
URL https://github.com/afpdev/alpheusafpparser
License GNU General Public License, Version 3
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

ks-server-http from group eu.fbk.knowledgestore (version 1.7.1)

The HTTP server module (ks-server-http) implements the Web API of the KnowledgeStore, which includes the two CRUD and SPARQL endpoints. The CRUD Endpoint supports the retrieval and manipulation of semi-structured data about resource, mention, entity and axiom records (encoded in RDF, possibly using JSONLD), and the upload / download of resource representation. The SPARQL Endpoint supports SPARQL SELECT, CONSTRUCT, DESCRIBE and ASK queries according to the W3C SPARQL protocol. The two endpoints are implemented on top of a component implementing the KnowledgeStore Java API (the Store interface), which can be either the the KnowledgeStore frontend (ks-frontend) or the Java Client. The implementation of the module is based on the Jetty Web sever (run in embedded mode) and the Jersey JAX-RS implementation. Reference documentation of the Web API is automatically generated using the Enunciate tool.

Group: eu.fbk.knowledgestore Artifact: ks-server-http
Show all versions Show documentation Show source 
 

1 downloads
Artifact ks-server-http
Group eu.fbk.knowledgestore
Version 1.7.1
Last update 08. October 2015
Organization not specified
URL http://knowledgestore.fbk.eu/ks-server-http/
License not specified
Dependencies amount 21
Dependencies slf4j-api, guava, sesame-model, jetty-server, jetty-jmx, jetty-webapp, jetty-security, jetty-util, javax.servlet-api, javax.ws.rs-api, jersey-server, jersey-common, jersey-media-multipart, jersey-mvc, jersey-mvc-mustache, logback-access, sesame-query, ks-core, ks-server, rdfpro-core, sesame-rio-api,
There are maybe transitive dependencies!

RBFNetwork from group nz.ac.waikato.cms.weka (version 1.0.8)

RBFNetwork implements a normalized Gaussian radial basisbasis function network. It uses the k-means clustering algorithm to provide the basis functions and learns either a logistic regression (discrete class problems) or linear regression (numeric class problems) on top of that. Symmetric multivariate Gaussians are fit to the data from each cluster. If the class is nominal it uses the given number of clusters per class. RBFRegressor implements radial basis function networks for regression, trained in a fully supervised manner using WEKA's Optimization class by minimizing squared error with the BFGS method. It is possible to use conjugate gradient descent rather than BFGS updates, which is faster for cases with many parameters, and to use normalized basis functions instead of unnormalized ones.

Group: nz.ac.waikato.cms.weka Artifact: RBFNetwork
Show all versions Show documentation Show source 
 

11 downloads
Artifact RBFNetwork
Group nz.ac.waikato.cms.weka
Version 1.0.8
Last update 16. January 2015
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/RBFNetwork
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

denormalize from group nz.ac.waikato.cms.weka (version 1.0.3)

An instance filter that collapses instances with a common grouping ID value into a single instance. Useful for converting transactional data into a format that Weka's association rule learners can handle. IMPORTANT: assumes that the incoming batch of instances has been sorted on the grouping attribute. The values of nominal attributes are converted to indicator attributes. These can be either binary (with f and t values) or unary with missing values used to indicate absence. The later is Weka's old market basket format, which is useful for Apriori. Numeric attributes can be aggregated within groups by computing the average, sum, minimum or maximum.

Group: nz.ac.waikato.cms.weka Artifact: denormalize
Show all versions Show documentation Show source 
 

0 downloads
Artifact denormalize
Group nz.ac.waikato.cms.weka
Version 1.0.3
Last update 29. April 2014
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/denormalize
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

multiBoostAB from group nz.ac.waikato.cms.weka (version 1.0.2)

Class for boosting a classifier using the MultiBoosting method. MultiBoosting is an extension to the highly successful AdaBoost technique for forming decision committees. MultiBoosting can be viewed as combining AdaBoost with wagging. It is able to harness both AdaBoost's high bias and variance reduction with wagging's superior variance reduction. Using C4.5 as the base learning algorithm, Multi-boosting is demonstrated to produce decision committees with lower error than either AdaBoost or wagging significantly more often than the reverse over a large representative cross-section of UCI data sets. It offers the further advantage over AdaBoost of suiting parallel execution. For more information, see Geoffrey I. Webb (2000). MultiBoosting: A Technique for Combining Boosting and Wagging. Machine Learning. Vol.40(No.2).

Group: nz.ac.waikato.cms.weka Artifact: multiBoostAB
Show all versions Show documentation Show source 
 

0 downloads
Artifact multiBoostAB
Group nz.ac.waikato.cms.weka
Version 1.0.2
Last update 26. April 2012
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/multiBoostAB
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

SPegasos from group nz.ac.waikato.cms.weka (version 1.0.2)

Implements the stochastic variant of the Pegasos (Primal Estimated sub-GrAdient SOlver for SVM) method of Shalev-Shwartz et al. (2007). This implementation globally replaces all missing values and transforms nominal attributes into binary ones. It also normalizes all attributes, so the coefficients in the output are based on the normalized data. Can either minimize the hinge loss (SVM) or log loss (logistic regression). For more information, see S. Shalev-Shwartz, Y. Singer, N. Srebro: Pegasos: Primal Estimated sub-GrAdient SOlver for SVM. In: 24th International Conference on MachineLearning, 807-814, 2007.

Group: nz.ac.waikato.cms.weka Artifact: SPegasos
Show all versions Show documentation Show source 
 

1 downloads
Artifact SPegasos
Group nz.ac.waikato.cms.weka
Version 1.0.2
Last update 26. April 2012
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/SPegasos
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

linearForwardSelection from group nz.ac.waikato.cms.weka (version 1.0.2)

Extension of BestFirst. Takes a restricted number of k attributes into account. Fixed-set selects a fixed number k of attributes, whereas k is increased in each step when fixed-width is selected. The search uses either the initial ordering to select the top k attributes, or performs a ranking (with the same evalutator the search uses later on). The search direction can be forward, or floating forward selection (with opitional backward search steps). For more information see: Martin Guetlein (2006). Large Scale Attribute Selection Using Wrappers. Freiburg, Germany.

Group: nz.ac.waikato.cms.weka Artifact: linearForwardSelection
Show all versions Show documentation Show source 
 

0 downloads
Artifact linearForwardSelection
Group nz.ac.waikato.cms.weka
Version 1.0.2
Last update 26. April 2012
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/linearForwardSelection
License GNU General Public License 3
Dependencies amount 2
Dependencies weka-dev, classifierBasedAttributeSelection,
There are maybe transitive dependencies!

tagsoup from group org.ccil.cowan.tagsoup (version 1.2.1)

TagSoup is a SAX-compliant parser written in Java that, instead of parsing well-formed or valid XML, parses HTML as it is found in the wild: poor, nasty and brutish, though quite often far from short. TagSoup is designed for people who have to process this stuff using some semblance of a rational application design. By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. TagSoup also includes a command-line processor that reads HTML files and can generate either clean HTML or well-formed XML that is a close approximation to XHTML.

Group: org.ccil.cowan.tagsoup Artifact: tagsoup
Show all versions Show documentation Show source 
 

44 downloads
Artifact tagsoup
Group org.ccil.cowan.tagsoup
Version 1.2.1
Last update 22. August 2011
Organization not specified
URL http://home.ccil.org/~cowan/XML/tagsoup/
License Apache License 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

rome from group rome (version 1.0)

All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it easy to work in Java with most syndication formats. Today it accepts all flavors of RSS (0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes a set of parsers and generators for the various flavors of feeds, as well as converters to convert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized SyndFeed object that lets you work on with the data without bothering about the underlying format.

Group: rome Artifact: rome
Show all versions Show documentation Show source 
 

17 downloads
Artifact rome
Group rome
Version 1.0
Last update 20. May 2010
Organization Sun Microsystems
URL https://rome.dev.java.net/
License not specified
Dependencies amount 1
Dependencies jdom,
There are maybe transitive dependencies!



Page 52 from 57 (items total 565)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy