All entries.
Showing Items 121-140 of 676 on page 7 of 34: First Previous 2 3 4 5 6 7 8 9 10 11 12 Next Last

Logo UniverSVM 1.22

by fabee - October 16, 2012, 11:24:12 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 42187 views, 6701 downloads, 0 subscriptions

About: The UniverSVM is a SVM implementation written in C/C++. Its functionality comprises large scale transduction via CCCP optimization, sparse solutions via CCCP optimization and data-dependent [...]

Changes:

Minor changes: fix bug on set_alphas_b0 function (thanks to Ferdinand Kaiser - ferdinand.kaiser@tut.fi)


Logo r-cran-ahaz 1.14

by r-cran-robot - June 3, 2013, 00:00:00 CET [ Project Homepage BibTeX Download ] 28594 views, 6672 downloads, 0 subscriptions

About: Regularization for semiparametric additive hazards regression

Changes:

Fetched by r-cran-robot on 2018-09-01 00:00:03.378832


Logo Optunity 1.1.1

by claesenm - September 30, 2015, 07:06:17 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 28551 views, 6666 downloads, 0 subscriptions

About: Optunity is a library containing various optimizers for hyperparameter tuning. Hyperparameter tuning is a recurrent problem in many machine learning tasks, both supervised and unsupervised.This package provides several distinct approaches to solve such problems including some helpful facilities such as cross-validation and a plethora of score functions.

Changes:

This minor release has the same feature set as Optunity 1.1.0, but incorporates several bug fixes, mostly related to the specification of structured search spaces.


Logo r-cran-LogicReg 1.5.3

by r-cran-robot - July 23, 2012, 00:00:00 CET [ Project Homepage BibTeX Download ] 29239 views, 6648 downloads, 0 subscriptions

About: Logic Regression

Changes:

Fetched by r-cran-robot on 2013-04-01 00:00:06.139495


Logo KeplerWeka 20101008

by fracpete - October 9, 2010, 05:27:13 CET [ Project Homepage BibTeX Download ] 23943 views, 6647 downloads, 0 subscriptions

About: KeplerWeka represents the integration of all the functionality of the WEKA Machine Learning Workbench into the open-source scientific workflow Kepler. Among them are classification, [...]

Changes:
  • Now compatible with Kepler 2.0
  • New version of WEKA included (patched 3.7.2 release), WEKA's new package manager works in conjunction with Kepler
  • Renamed actor Count to ConditionalTee, introduced new Count actor
  • Removed actors OutputLogger, MultiSync, TwinSync

Logo A Pattern Recognizer In Lua with ANNs v0.4.1

by pakozm - December 3, 2015, 15:01:36 CET [ Project Homepage BibTeX Download ] 27020 views, 6614 downloads, 0 subscriptions

About: APRIL-ANN toolkit (A Pattern Recognizer In Lua with Artificial Neural Networks). This toolkit incorporates ANN algorithms (as dropout, stacked denoising auto-encoders, convolutional neural networks), with other pattern recognition methods as hidden makov models (HMMs) among others.

Changes:
  • Updated home repository link to follow april-org github organization.
  • Improved serialize/deserialize functions, reimplemented all the serialization procedure.
  • Added exceptions support to LuaPkg and APRIL-ANN, allowing to capture C++ errors into Lua code.
  • Added set class.
  • Added series class.
  • Added data_frame class, similar to Python Pandas DataFrame.
  • Serialization and deserilization have been updated with more robust and reusable API, implemented in util.serialize() and util.deserialize() functions.
  • Added matrix.ext.broadcast utility (similar to broadcast in numpy).
  • Added ProbablisitcMatrixANNComponent, which allow to implement probabilistic mixtures of posteriors and/or likelihoods.
  • Added batch normalization ANN component.
  • Allowing matrix.join to add new axis.
  • Added methods prod(), cumsum() and cumprod() at matrix classes.
  • Added methods count_eq() and count_neq() at matrix classes.
  • Serializable objects API have been augmented with methods ctor_name() and
    ctor_params() in Lua, refered to luaCtorName() and luaCtorParams() in C++.
  • Added cast.to to dynamic cast C++ objects pushed into Lua, allowing to convert base class objects into any of its derived classes.
  • Added matrix.sparse as valid values for targets in ann.loss.mse and
    ann.loss.cross_entropy.
  • Changed matrix metamethods __index and __newindex, allowing to use
    matrix objects with standard Lua operator[].
  • Added matrix.masked_fill and matrix.masked_copy matrix.
  • Added matrix.indexed_fill and matrix.indexed_copy matrix.
  • Added ann.components.probabilistic_matrix, and its corresponding specializations ann.components.left_probabilistic_matrix and
    ann.components.right_probabilistic_matrix.
  • Added operator[] in the right side of matrix operations.
  • Added ann.components.transpose.
  • Added max_gradients_norm in traianble.supervised_trainer, to avoid gradients exploding.
  • Added ann.components.actf.sparse_logistic a logistic activation function with sparsity penalty.
  • Simplified math.add, math.sub, ... and other math extensions for reductions, their original behavior can be emulated by using bind function.
  • Added bind function to freeze any positional argument of any Lua function.
  • Function stats.boot uses multiple_unpack to allow a table of sizes and the generation of multiple index matrices.
  • Added multiple_unpack Lua function.
  • Added __tostring metamethod to numeric memory blocks in Lua.
  • Added dataset.token.sparse_matrix, a dataset which allow to traverse by rows a sparse matrix instance.
  • Added matrix.sparse.builders.dok, a builder which uses the Dictionary-of-Keys format to construct a sparse matrix from scratch.
  • Added method data to numeric matrix classes.
  • Added methods values, indices, first_index to sparse matrix class.
  • Fixed bugs when reading bad formed CSV files.
  • Fixed bugs at statistical distributions.
  • FloatRGB bug solved on equal (+=, -=, ...) operators. This bug affected ImageRGB operations such as resize.
  • Solved problems when chaining methods in Lua, some objects end to be garbage collected.
  • Improved support of strings in auto-completion (rlcompleter package).
  • Solved bug at SparseMatrix<T> when reading it from a file.
  • Solved bug in Image<T>::rotate90_cw methods.
  • Solved bug in SparseMatrix::toDense() method.

C/C++

  • Better LuaTable accessors, using [] operator.
  • Implementation of matrix __index, __newindex and __call metamethods in C++.
  • Implementation of matProd(), matCumSum() and matCumProd() functions.
  • Implementation of matCountEq() and matCountNeq() functions for
    Matrix<T>.
  • Updated matrix_ext_operations.h to change API of matrix operations. All functions have been overloaded to accept an in-place operation and another version which receives a destination matrix.
  • Adding iterators to language models.
  • Added MatrixScalarMap2 which receives as input2 a SparaseMatrix instance. This functions needs to be generalized to work with CPU and CUDA.
  • The method SparseMatrix<T>::fromDenseMatrix() uses a DOKBuilder object to build the sparse matrix.
  • The conversion of a Matrix<T> into a SparseMatrix<T> has been changed from a constructor overload to the static method
    SparseMatrix<T>::fromDenseMatrix().
  • Added support for IPyLua.
  • Optimized matrix access for confusion matrix.
  • Minor changes in class.lua.
  • Improved binding to avoid multiple object copies when pushing C++ objects.
  • Added Git commit hash and compilation time.

Logo SparklingGraph 0.0.7

by riomus - May 22, 2017, 15:29:28 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 25251 views, 6352 downloads, 0 subscriptions

About: Large scale, distributed graph processing made easy.

Changes:

Graph partitioning methods APSP approximation method Performance improvements License change Bug fixes


Logo python weka wrapper3 0.1.4

by fracpete - February 18, 2018, 04:54:03 CET [ Project Homepage BibTeX Download ] 22252 views, 6349 downloads, 0 subscriptions

About: A thin Python3 wrapper that uses the javabridge Python library to communicate with a Java Virtual Machine executing Weka API calls.

Changes:
  • upgraded to Weka 3.9.2
  • properly initializing package support now, rather than adding package jars to classpath
  • added weka.core.ClassHelper Java class for obtaining classes and static fields, as javabridge only uses the system class loader

Logo Hivemall 0.3

by myui - March 13, 2015, 17:08:22 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 31163 views, 6341 downloads, 0 subscriptions

About: Hivemall is a scalable machine learning library running on Hive/Hadoop.

Changes:
  • Supported Matrix Factorization
  • Added a support for TF-IDF computation
  • Supported AdaGrad/AdaDelta
  • Supported AdaGradRDA classification
  • Added normalization scheme

Logo OpenNN 3.1

by Sergiointelnics - March 3, 2017, 17:17:45 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 33783 views, 6325 downloads, 0 subscriptions

About: OpenNN is a software library written in C++ for advanced analytics. It implements neural networks, the most successful machine learning method. The library has been designed to learn from both data sets and mathematical models.

Changes:

New algorithms, correction of bugs.


Logo KReator 1.2.3198

by mthimm - December 23, 2010, 12:07:25 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 29864 views, 6321 downloads, 0 subscriptions

About: KReator is an integrated development environment (IDE) for relational probabilistic knowledge representation languages. At the moment, KReator supports Bayesian Logic Programs (BLPs), Markov Logic Networks (MLNs), Relational Maximum Entropy (RME), Relational Bayesian Networks (RBN), and Probabilistic Prolog (ProbLog).

Changes:
  • several bugfixes
  • Beta version of ProbLog plugin
  • enhanced command completion in console
  • enhanced error messages for syntax errors
  • refactored logic libraries
  • added prettyprint function in console
  • added syntax highlighting for RBNs

Logo r-cran-svmpath 0.952

by r-cran-robot - February 1, 2012, 00:00:11 CET [ Project Homepage BibTeX Download ] 27999 views, 6205 downloads, 0 subscriptions

About: svmpath

Changes:

Fetched by r-cran-robot on 2012-02-01 00:00:11.755984


Logo The Infinite Hidden Markov Model 0.5

by jvangael - July 21, 2010, 23:41:24 CET [ BibTeX BibTeX for corresponding Paper Download ] 35083 views, 6187 downloads, 0 subscriptions

About: An implementation of the infinite hidden Markov model.

Changes:

Since 0.4: Removed dependency from lightspeed (now using statistics toolbox). Updated to newer matlab versions.


Logo r-cran-ElemStatLearn 2015.6.26

by r-cran-robot - June 26, 2015, 00:00:00 CET [ Project Homepage BibTeX Download ] 27636 views, 6180 downloads, 0 subscriptions

About: Data Sets, Functions and Examples from the Book

Changes:

Fetched by r-cran-robot on 2018-01-01 00:00:07.925283


Logo PREA Personalized Recommendation Algorithms Toolkit 1.1

by srcw - September 1, 2012, 22:53:37 CET [ Project Homepage BibTeX Download ] 24448 views, 6179 downloads, 0 subscriptions

About: An open source Java software providing collaborative filtering algorithms.

Changes:

Initial Announcement on mloss.org.


Logo MATLAB spectral clustering package 1.1

by wenyenc - February 4, 2010, 01:54:38 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 32373 views, 6169 downloads, 0 subscriptions

Rating Whole StarWhole StarWhole StarWhole StarEmpty Star
(based on 2 votes)

About: A MATLAB spectral clustering package to deal with large data sets. Our tool can handle large data sets (200,000 RCV1 data) on a 4GB memory general machine. Spectral clustering algorithm has been [...]

Changes:
  • Add bib
  • Add code of nystrom without orthogonalization
  • Add accuracy quality measure
  • Add more running scripts

Logo figtree 0.9.2

by vmorariu - January 17, 2009, 00:13:32 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 11492 views, 6087 downloads, 0 subscriptions

About: A library for fast computation of Gauss transforms in multiple dimensions, using the Improved Fast Gauss Transform and a tree data structure. This library is useful for efficient Kernel Density [...]

Changes:

Initial Announcement on mloss.org.


Logo r-cran-hda 0.2-11

by r-cran-robot - February 17, 2013, 00:00:00 CET [ Project Homepage BibTeX Download ] 26715 views, 6033 downloads, 0 subscriptions

About: Heteroscedastic Discriminant Analysis

Changes:

Fetched by r-cran-robot on 2013-04-01 00:00:05.551691


Logo Social Impact theory based Optimizer library 1.1

by rishem - July 29, 2016, 13:19:47 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 27424 views, 5993 downloads, 0 subscriptions

About: This is an optimization library based on Social Impact Theory(SITO). The optimizer works in the same way as PSO and GA.

Changes:

bug removed


Logo A Local and Parallel Computation Toolbox for Gaussian Process Regression 1.0

by cwpark - March 19, 2012, 17:21:28 CET [ Project Homepage BibTeX BibTeX for corresponding Paper Download ] 21209 views, 5990 downloads, 0 subscriptions

About: This local and parallel computation toolbox is the Octave and Matlab implementation of several localized Gaussian process regression methods: the domain decomposition method (Park et al., 2011, DDM), partial independent conditional (Snelson and Ghahramani, 2007, PIC), localized probabilistic regression (Urtasun and Darrell, 2008, LPR), and bagging for Gaussian process regression (Chen and Ren, 2009, BGP). Most of the localized regression methods can be applied for general machine learning problems although DDM is only applicable for spatial datasets. In addition, the GPLP provides two parallel computation versions of the domain decomposition method. The easiness of being parallelized is one of the advantages of the localized regression, and the two parallel implementations will provide a good guidance about how to materialize this advantage as software.

Changes:

Initial Announcement on mloss.org.


Showing Items 121-140 of 676 on page 7 of 34: First Previous 2 3 4 5 6 7 8 9 10 11 12 Next Last