Skip to content

Commit

Permalink
0.4.1 version release
Browse files Browse the repository at this point in the history
  • Loading branch information
aksnzhy committed Jan 30, 2019
1 parent 3f72160 commit 6c6d0bc
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 9 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -48,6 +48,9 @@ xLearn has been developed and used by many active community members. Your help i

## What's New

- 2018-11-22 xLearn 0.4.1 version release. Main update:
* More flexible data reader

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

* Fix bugs in previous version
Expand Down
6 changes: 5 additions & 1 deletion doc/api_list.rst
Expand Up @@ -89,6 +89,8 @@ Options: ::
--no-norm : Disable instance-wise normalization. By default, xLearn will use instance-wise
normalization in both training and prediction processes.

--no-bin : Do not generate bin file for training and test data file.
--quiet : Don't print any evaluation information during the training and just train the
model quietly. It can accelerate the training process.
Expand Down Expand Up @@ -149,6 +151,8 @@ API List: ::

model.setOnDisk() # Set xlearn to use on-disk training.

model.setNoBin() # Do not generate bin file for training and test data.

model.setSign() # Convert prediction to 0 and 1.

model.setSigmoid() # Convert prediction to (0, 1).
Expand Down Expand Up @@ -189,7 +193,7 @@ Parameter List: ::

fold : int value # number of fold for cross-validation

opt : {'sgd', 'adagrad', 'ftrl'} # optimization method
opt : {'sgd', 'agagrad', 'ftrl'} # optimization method

stop_window : Size of stop window for early-stopping.

Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Expand Up @@ -124,7 +124,7 @@ You will see the following message if the installation is successful: ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.40 Version --
xLearn -- 0.41 Version --
-------------------------------------------------------------------------


Expand Down
3 changes: 3 additions & 0 deletions doc/news.md
@@ -1,5 +1,8 @@
## What's New

- 2018-11-22 xLearn 0.4.1 version release. Main update:
* More flexible data reader.

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

* Fix bugs in previous version
Expand Down
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.40 Version --
xLearn -- 0.41 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.4.0.tar.gz
R CMD INSTALL xlearn_0.4.1.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.40 Version --
xLearn -- 0.41 Version --
-------------------------------------------------------------------------

Quick Start
Expand Down
2 changes: 1 addition & 1 deletion python-package/xlearn/VERSION
@@ -1 +1 @@
0.4.0
0.4.1
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.40 Version --\n"
" xLearn -- 0.41 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.40 Version --
// xLearn -- 0.41 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.40 Version --\n"
" xLearn -- 0.41 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down

0 comments on commit 6c6d0bc

Please sign in to comment.