From 2e180dab44b6768c6f77df186e1e27861d8c6e8b Mon Sep 17 00:00:00 2001 From: JJ Merelo Date: Fri, 19 May 2017 19:39:47 +0200 Subject: [PATCH] Adding a bit of Perl There should be much more, I know, but what is there is quite interesting. --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 8bd1124..48cc72d 100644 --- a/README.md +++ b/README.md @@ -707,6 +707,31 @@ on MNIST digits[DEEP LEARNING] * [Libra-Tk](http://libra.cs.uoregon.edu) - Algorithms for learning and inference with discrete probabilistic models. * [TensorFlow](https://github.com/LaurentMazare/tensorflow-ocaml) - OCaml bindings for TensorFlow. + +## Perl + +### Data Analysis / Data Visualization + +* [Perl Data Language](https://metacpan.org/pod/Paws::MachineLearning), +a pluggable architecture for data and image processing, which can +be +[used for machine learning](https://github.com/zenogantner/PDL-ML). + +### General-Purpose Machine Learning + +* [MXnet for Deep Learning, in Perl](https://github.com/dmlc/mxnet/tree/master/perl-package), +also [released in CPAN](https://metacpan.org/pod/AI::MXNet). +* [Paws::MachineLearning](https://metacpan.org/pod/Paws::MachineLearning), +using AWS machine learning platform from Perl. +* [Algorithm::SVMLight](https://metacpan.org/pod/Algorithm::SVMLight), + implementation of Support Vector Machines with SVMLight under it. + +* Several machine learning and artificial intelligence models are + included in the [`AI`](https://metacpan.org/search?size=20&q=AI) + namespace. For instance, you can + find [Naïve Bayes](https://metacpan.org/pod/AI::NaiveBayes). + + ## PHP