Skip to content

Commit 41c290a

Browse files
committed
Update license and readme
1 parent da77858 commit 41c290a

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ os:
88
notifications:
99
email: false
1010
after_success:
11-
- julia -e 'cd(Pkg.dir("LIBSVM")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
11+
- julia -e 'cd(Pkg.dir("SVMs")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'

LICENSE.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
Copyright (c) 2013 Simon Kornblith
1+
2+
Copyright (c) 2017 Matti Pastell
3+
4+
Copyright (c) 2013-2016 Simon Kornblith
25

36
Permission is hereby granted, free of charge, to any person obtaining a copy
47
of this software and associated documentation files (the "Software"), to deal

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
LIBSVM.jl
2-
=========
1+
# SVMs.jl
32

4-
[![Build Status](https://travis-ci.org/simonster/LIBSVM.jl.png?branch=master)](https://travis-ci.org/simonster/LIBSVM.jl)
3+
This us a Julia interface for [LIBSVM](http://www.csie.ntu.edu.tw/~cjlin/libsvm/).
54

6-
Julia bindings for [LIBSVM](http://www.csie.ntu.edu.tw/~cjlin/libsvm/)
5+
Features:
6+
* Supports all LIBSVM models: classification C-SVC, nu-SVC, regression: epsilon-SVR, nu-SVR
7+
and distribution estimation: one-class SVM
8+
* Model objects are represented by Julia type SVM which gives you easy
9+
access to model features and can be saved e.g. as JLD file
710

811
## Usage
912

@@ -32,6 +35,7 @@ model = svmtrain(labels[1:2:end], instances[:, 1:2:end]);
3235

3336
## Credits
3437

35-
Created by Simon Kornblith
38+
The library is developed and maintained by Matti Pastell. It is
39+
based on [LIBSVM.jl](https://github.com/simonster/LIBSVM.jl) by Simon Kornblith.
3640

3741
[LIBSVM](http://www.csie.ntu.edu.tw/~cjlin/libsvm/) by Chih-Chung Chang and Chih-Jen Lin

0 commit comments

Comments
 (0)