README.md in thundersvm-0.1.4 vs README.md in thundersvm-0.2.0

- old
+ new

@@ -1,21 +1,21 @@ -# ThunderSVM +# ThunderSVM Ruby [ThunderSVM](https://github.com/Xtra-Computing/thundersvm) - high performance parallel SVMs - for Ruby :fire: Uses GPUs and multi-core CPUs for blazing performance For a great intro on support vector machines, check out [this video](https://www.youtube.com/watch?v=efR1C6CvhmE). -[![Build Status](https://travis-ci.org/ankane/thundersvm.svg?branch=master)](https://travis-ci.org/ankane/thundersvm) +[![Build Status](https://github.com/ankane/thundersvm-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/thundersvm-ruby/actions) ## Installation Add this line to your application’s Gemfile: ```ruby -gem 'thundersvm' +gem "thundersvm" ``` On Mac, also install OpenMP: ```sh @@ -156,24 +156,24 @@ - [ThunderSVM: A Fast SVM Library on GPUs and CPUs](https://github.com/Xtra-Computing/thundersvm/blob/master/thundersvm-full.pdf) - [A Practical Guide to Support Vector Classification](https://www.csie.ntu.edu.tw/~cjlin/papers/guide/guide.pdf) ## History -View the [changelog](https://github.com/ankane/thundersvm/blob/master/CHANGELOG.md) +View the [changelog](https://github.com/ankane/thundersvm-ruby/blob/master/CHANGELOG.md) ## Contributing Everyone is encouraged to help improve this project. Here are a few ways you can help: -- [Report bugs](https://github.com/ankane/thundersvm/issues) -- Fix bugs and [submit pull requests](https://github.com/ankane/thundersvm/pulls) +- [Report bugs](https://github.com/ankane/thundersvm-ruby/issues) +- Fix bugs and [submit pull requests](https://github.com/ankane/thundersvm-ruby/pulls) - Write, clarify, or fix documentation - Suggest or add new features To get started with development: ```sh -git clone https://github.com/ankane/thundersvm.git -cd thundersvm +git clone https://github.com/ankane/thundersvm-ruby.git +cd thundersvm-ruby bundle install bundle exec rake test ```