Skip to content

Commit

Permalink
0.40 version
Browse files Browse the repository at this point in the history
  • Loading branch information
aksnzhy committed Nov 22, 2018
1 parent aa66381 commit 042bf14
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: xlearn
Title: Large-Scale Machine Learning
Version: 0.1
Version: 0.4.0
Date: 2017-12-04
Author: Chao Ma <[email protected]>, Tong He <[email protected]>
Maintainer: Tong He <[email protected]>
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://github.com/aksnzhy/xLearn/raw/master/img/xlearn_logo.png" width = "400"/>

[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg)](./LICENCE)
[![Project Status](https://img.shields.io/badge/version-0.3.8-green.svg)]()
[![Project Status](https://img.shields.io/badge/version-0.4.0-green.svg)]()
[![Travis](https://img.shields.io/travis/rust-lang/rust.svg)]()

## What is xLearn?
Expand Down Expand Up @@ -32,6 +32,11 @@ xLearn can be used for solving large-scale machine learning problems. First, xLe

## What's New

- 2018-11-22 xLearn 0.4.0 version release. Main update:

* Fix bugs in previous version
* Add online learning for xLearn

- 2018-11-10 xLearn 0.3.8 version release. Main update:

* Fix bugs in previous version.
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ You will see the following message if the installation is successful: ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.38 Version --
xLearn -- 0.40 Version --
-------------------------------------------------------------------------


Expand Down
2 changes: 1 addition & 1 deletion makeR.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ rm -r xlearn
cp -r R-package xlearn
cp -r src xlearn/src/src
R CMD build xlearn
R CMD INSTALL xlearn_0.3.8.tar.gz
R CMD INSTALL xlearn_0.4.0.tar.gz
2 changes: 1 addition & 1 deletion python-package/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you install xLearn Python package successfully, you will see ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.38 Version --
xLearn -- 0.40 Version --
-------------------------------------------------------------------------

Quick Start
Expand Down
2 changes: 1 addition & 1 deletion python-package/setup_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def run(self):

if __name__ == "__main__":
setup(name='xlearn',
version="0.35.a1",
version="0.40.a1",
description="xLearn Python Package",
maintainer='Chao Ma',
maintainer_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion python-package/xlearn/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.8
0.4.0
2 changes: 1 addition & 1 deletion src/c_api/c_api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ XL_DLL int XLearnHello() {
" \\ \\/ / | / _ \\/ _` | '__| '_ \\ \n"
" > <| |___| __/ (_| | | | | | |\n"
" /_/\\_\\_____/\\___|\\__,_|_| |_| |_|\n\n"
" xLearn -- 0.38 Version --\n"
" xLearn -- 0.40 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down
4 changes: 2 additions & 2 deletions src/solver/solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace xLearn {
// > <| |___| __/ (_| | | | | | |
// /_/\_\______\___|\__,_|_| |_| |_|
//
// xLearn -- 0.38 Version --
// xLearn -- 0.40 Version --
//------------------------------------------------------------------------------
void Solver::print_logo() const {
std::string logo =
Expand All @@ -53,7 +53,7 @@ void Solver::print_logo() const {
" \\ \\/ / | / _ \\/ _` | '__| '_ \\ \n"
" > <| |___| __/ (_| | | | | | |\n"
" /_/\\_\\_____/\\___|\\__,_|_| |_| |_|\n\n"
" xLearn -- 0.38 Version --\n"
" xLearn -- 0.40 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down

0 comments on commit 042bf14

Please sign in to comment.