All Projects → paulgoetze → Weka Jruby

paulgoetze / Weka Jruby

Licence: mit
Machine Learning & Data Mining with JRuby

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Weka Jruby

Machine-Learning-Specialization
Project work and Assignments for Machine learning specialization course on Coursera by University of washington
Stars: ✭ 27 (-57.81%)
Mutual labels:  clustering, classification
Pycaret
An open-source, low-code machine learning library in Python
Stars: ✭ 4,594 (+7078.13%)
Mutual labels:  clustering, classification
hmm
A Hidden Markov Model implemented in Javascript
Stars: ✭ 29 (-54.69%)
Mutual labels:  clustering, classification
Ml Course
Starter code of Prof. Andrew Ng's machine learning MOOC in R statistical language
Stars: ✭ 154 (+140.63%)
Mutual labels:  classification, clustering
Scikit Multilearn
A scikit-learn based module for multi-label et. al. classification
Stars: ✭ 638 (+896.88%)
Mutual labels:  classification, clustering
Uci Ml Api
Simple API for UCI Machine Learning Dataset Repository (search, download, analyze)
Stars: ✭ 190 (+196.88%)
Mutual labels:  classification, clustering
R
All Algorithms implemented in R
Stars: ✭ 294 (+359.38%)
Mutual labels:  classification, clustering
Tiny ml
numpy 实现的 周志华《机器学习》书中的算法及其他一些传统机器学习算法
Stars: ✭ 129 (+101.56%)
Mutual labels:  classification, clustering
Smile
Statistical Machine Intelligence & Learning Engine
Stars: ✭ 5,412 (+8356.25%)
Mutual labels:  classification, clustering
Tensorflow Book
Accompanying source code for Machine Learning with TensorFlow. Refer to the book for step-by-step explanations.
Stars: ✭ 4,448 (+6850%)
Mutual labels:  classification, clustering
Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (+3332.81%)
Mutual labels:  classification, clustering
Satellite imagery analysis
Implementation of different techniques to find insights from the satellite data using Python.
Stars: ✭ 31 (-51.56%)
Mutual labels:  classification, clustering
Practical Machine Learning With Python
Master the essential skills needed to recognize and solve complex real-world problems with Machine Learning and Deep Learning by leveraging the highly popular Python Machine Learning Eco-system.
Stars: ✭ 1,868 (+2818.75%)
Mutual labels:  classification, clustering
Orange3
🍊 📊 💡 Orange: Interactive data analysis
Stars: ✭ 3,152 (+4825%)
Mutual labels:  classification, clustering
Machine Learning Projects
This repository consists of all my Machine Learning Projects.
Stars: ✭ 135 (+110.94%)
Mutual labels:  classification, clustering
Python-Machine-Learning-Fundamentals
D-Lab's 6 hour introduction to machine learning in Python. Learn how to perform classification, regression, clustering, and do model selection using scikit-learn and TPOT.
Stars: ✭ 46 (-28.12%)
Mutual labels:  clustering, classification
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+2309.38%)
Mutual labels:  classification, clustering
Ml Dl Scripts
The repository provides usefull python scripts for ML and data analysis
Stars: ✭ 119 (+85.94%)
Mutual labels:  classification, clustering
Malheur
A Tool for Automatic Analysis of Malware Behavior
Stars: ✭ 313 (+389.06%)
Mutual labels:  classification, clustering
Tribuo
Tribuo - A Java machine learning library
Stars: ✭ 882 (+1278.13%)
Mutual labels:  classification, clustering

Weka

Gem Version Build Status Codacy Badge Open Source Helpers

Machine Learning & Data Mining with JRuby based on the Weka Java library.

Installation

Add this line to your application's Gemfile:

gem 'weka'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install weka

Usage

Use Weka's Machine Learning and Data Mining algorithms by requiring the gem:

require 'weka'

The weka gem tries to carry over the namespaces defined in Weka and enhances some interfaces in order to allow a more Ruby-ish programming style when using the Weka library.

The idea behind keeping the namespaces is, that you can also use the Weka documentation for looking up functionality and classes.

Please refer to the gem’s Wiki for detailed information about how to use weka with JRuby and some examplary code snippets.

Development

  1. Check out the repo with git clone [email protected]:paulgoetze/weka-jruby.git.
  2. Set a local environment variable export JARS_VENDOR=false. This will prevent compiling the jars into your repo’s /lib directory and will load them from your local maven repository instead. See the jar-dependencies README for more information.
  3. Run bin/setup or bundle install to install the dependencies.

Then, run rake spec to run the tests. You can also run bin/console or rake irb for an interactive prompt that will allow you to experiment.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/paulgoetze/weka-jruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant Code of Conduct.

For development we use the git branching model described by nvie.

Here’s how to contribute:

  1. Fork it (https://github.com/paulgoetze/weka-jruby/fork)
  2. Create your feature branch (git checkout -b feature/my-new-feature develop)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin feature/my-new-feature)
  5. Create a new Pull Request

Please try to add RSpec tests along with your new feature. This will ensure that your code does not break existing functionality and that your feature is working as expected.

We use Rubocop for code style recommendations. Please make sure your contributions comply with the project’s Rubocop config.

Acknowledgement

The original ideas for wrapping Weka in JRuby come from @arrigonialberto86 and his ruby-band gem. Great thanks!

License

The gem is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].