Skip to content

Commit

Permalink
0.3.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aksnzhy committed Oct 22, 2018
1 parent 8d94937 commit 8e30f63
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 12 deletions.
8 changes: 6 additions & 2 deletions README.md
@@ -1,12 +1,12 @@
<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.4-green.svg)]()
[![Project Status](https://img.shields.io/badge/version-0.3.5-green.svg)]()
[![Travis](https://img.shields.io/travis/rust-lang/rust.svg)]()

## What is xLearn?

xLearn is a ***high performance***, ***easy-to-use***, and ***scalable*** machine learning package, including linear model (LR), factorization machines (FM), and field-aware factorization machines (FFM), which can be used to solve large-scale machine learning problems. xLearn is especially useful for solving machine learning problems on large-scale sparse data, which is very common in Internet services such as online advertisement and recommender systems in recent years. If you are the user of liblinear, libfm, and libffm, now xLearn is your another better choice.
xLearn is a ***high performance***, ***easy-to-use***, and ***scalable*** machine learning package, including linear model (LR), factorization machines (FM), and field-aware factorization machines (FFM), which can be used to solve large-scale machine learning problems. xLearn is especially useful for solving machine learning problems on large-scale sparse data, which is very common in Internet services such as online advertisement and recommender systems in recent years. If you are the user of liblinear, libfm, and libffm, now xLearn is your another better choice.

[Get Started! (English)](http://xlearn-doc.readthedocs.io/en/latest/index.html)

Expand All @@ -32,6 +32,10 @@ xLearn can be used for solving large-scale machine learning problems. First, xLe

## What's New

- 2018-10-22 xLearn 0.3.5 version release. Main update:

* Fix bugs in 0.3.4.

- 2018-10-21 xLearn 0.3.4 version release. Main update:

* Fix bugs in on-disk training.
Expand Down
10 changes: 7 additions & 3 deletions doc/news.md
@@ -1,6 +1,10 @@
## What's New

- 2018-10-21 xLearn 0.3.4 version release. Main updaye:
- 2018-10-22 xLearn 0.3.5 version release. Main update:

* Fix bugs in 0.3.4.

- 2018-10-21 xLearn 0.3.4 version release. Main update:

* Fix bugs in on-disk training.
* Support new file format.
Expand All @@ -19,7 +23,7 @@

<img src="https://github.com/aksnzhy/xLearn/raw/master/img/xlearn_logo.png" width = "300"/>

- 2019-09-07 The [Chinese document](http://xlearn-doc-cn.readthedocs.io/en/latest/index.html) is available now!
- 2018-09-07 The [Chinese document](http://xlearn-doc-cn.readthedocs.io/en/latest/index.html) is available now!

- 2018-03-08 xLearn 0.3.0 version release. Main update:

Expand All @@ -35,4 +39,4 @@
* New Documents
* Faster FTRL algorithm

- 2017-11-24 The first version (0.1.0) of xLearn release !
- 2017-11-24 The first version (0.1.0) of xLearn release !
2 changes: 1 addition & 1 deletion doc/python_package.rst
Expand Up @@ -18,7 +18,7 @@ If you install xLearn Python package successfully, you will see: ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.34 Version --
xLearn -- 0.35 Version --
-------------------------------------------------------------------------

Quick Start
Expand Down
2 changes: 1 addition & 1 deletion makeR.sh
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.4.tar.gz
R CMD INSTALL xlearn_0.3.5.tar.gz
2 changes: 1 addition & 1 deletion python-package/README.rst
Expand Up @@ -18,7 +18,7 @@ If you install xLearn Python package successfully, you will see ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.34 Version --
xLearn -- 0.35 Version --
-------------------------------------------------------------------------

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

if __name__ == "__main__":
setup(name='xlearn',
version="0.31.a1",
version="0.35.a1",
description="xLearn Python Package",
maintainer='Chao Ma',
maintainer_email='mctt90@gmail.com',
Expand Down
2 changes: 1 addition & 1 deletion src/c_api/c_api.cc
Expand Up @@ -39,7 +39,7 @@ XL_DLL int XLearnHello() {
" \\ \\/ / | / _ \\/ _` | '__| '_ \\ \n"
" > <| |___| __/ (_| | | | | | |\n"
" /_/\\_\\_____/\\___|\\__,_|_| |_| |_|\n\n"
" xLearn -- 0.34 Version --\n"
" xLearn -- 0.35 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down
4 changes: 2 additions & 2 deletions src/solver/solver.cc
Expand Up @@ -42,7 +42,7 @@ namespace xLearn {
// > <| |___| __/ (_| | | | | | |
// /_/\_\______\___|\__,_|_| |_| |_|
//
// xLearn -- 0.34 Version --
// xLearn -- 0.35 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.34 Version --\n"
" xLearn -- 0.35 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down

0 comments on commit 8e30f63

Please sign in to comment.