Skip to content

Commit

Permalink
Update version 1.48
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonino Calderone committed Sep 2, 2015
1 parent f1a9f41 commit f5f90c0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ Aug 30, 2015

Sep 1, 2015
* Released nunn library 1.47 (Bug-fixing, improved dynamic learing in winttt)

Sep 2, 2015
* Released nunn library 1.48 (Add cross entropy cost function support, bug-fixing)
4 changes: 2 additions & 2 deletions config.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.47"
#define PACKAGE_VERSION "1.48"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "1.47"
#define VERSION "1.48"

/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([nunn], [1.47], [acaldmail@gmail.com])
AC_INIT([nunn], [1.48], [acaldmail@gmail.com])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])

Expand Down
2 changes: 1 addition & 1 deletion mnist_test/mnist_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The second part of the MNIST data set is 10,000 images to be used as test data.
To make this a good test of performance, the test data was taken from a different
set of people than the original training data.
The training input is treated as a 28×28=784-dimensional vector.
The training input is treated as a 28×28=784-dimensional vector.
Each entry in the vector represents the grey value for a single pixel in the image.
The corresponding desired output is a 10-dimensional vector.
Expand Down
2 changes: 1 addition & 1 deletion tictactoe/tictactoe.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

/* -------------------------------------------------------------------------- */

#define PROG_VERSION "1.47"
#define PROG_VERSION "1.48"
#define TICTACTOE_SIDE 3
#define TICTACTOE_CELLS (TICTACTOE_SIDE*TICTACTOE_SIDE)

Expand Down
2 changes: 1 addition & 1 deletion winttt/winttt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

/* -------------------------------------------------------------------------- */

#define PROG_VERSION "1.47"
#define PROG_VERSION "1.48"
#define ABOUT_TEXT "TicTacToe for Windows by A. Calderone (c) - 2015"
#define ABOUT_INFO "WinTTT " PROG_VERSION
#define PROG_WINXRES 664
Expand Down

0 comments on commit f5f90c0

Please sign in to comment.