https://github.com/hammady/svmlightcli
svm_light command line gem wrapper offering svm_learn and svm_classify
https://github.com/hammady/svmlightcli
machine-learning ruby svmlight
Last synced: 8 months ago
JSON representation
svm_light command line gem wrapper offering svm_learn and svm_classify
- Host: GitHub
- URL: https://github.com/hammady/svmlightcli
- Owner: hammady
- License: other
- Created: 2017-05-28T12:38:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-27T12:11:04.000Z (over 8 years ago)
- Last Synced: 2025-02-17T03:45:30.690Z (over 1 year ago)
- Topics: machine-learning, ruby, svmlight
- Language: C
- Size: 57.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# svmlightcli
This is a convenience gem wrapper for the [svm_light](http://svmlight.joachims.org/)
command line binaries. No Ruby interfaces.
After installation, it offers 2 binaries in the path: `svm_learn` and `svm_classify`.
In other words, it is something like:
`brew install svm_light` or `apt-get install svm_light`
(which do not exist), but using the RubyGems way.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'svmlightcli'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install svmlightcli
## Usage
Use the binaries the same exact way you use them when compiling from source:
$ svm_learn ...
$ svm_classify ...
## Development
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/hammady/svmlightcli.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
The original license of the svm_light author is also maintained in [LICENSE.txt](https://github.com/hammady/svmlightcli/blob/master/LICENSE.txt).