This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
Releases: chainer/chainerui
Releases · chainer/chainerui
v0.5.0a1
v0.5.0
Release v0.5.0
DB schema is updated, please don't forget to execute chainerui db upgrade
command after upgrade ChainerUI.
New features
-
export plot as JSON file and PNG image (#112)
-
result command buttons are show on collapsable table row (accordion) (#118)
Improvements
- modify view on single column like smartphone, chart component is on top (#137)
Bug fixes and refactoring
- fix typo on document (#130 thx! @69guitar1015)
- stop server warning (#139)
- server logging style is changed
- debug mode (same as before):
127.0.0.1 - - [10/Aug/2018 12:44:52] "GET /api/v1/projects/1/results?logs_limit=1000 HTTP/1.1" 200 -
- production mode (without debug flag):
127.0.0.1 - - [2018-08-10 12:44:31] "GET /api/v1/projects/1/results?logs_limit=1000 HTTP/1.1" 200 43299 0.228562
v0.4.0
Release v0.4.0
Changes without Compatibility
- change
args
file style, followed by rawjson
package (#117, thanks @himkt !)- before
{"param": "{in_param: 1}"}
- after
{"param": {"in_param": 1}}
- on browser, showed as
{in_param: 1}
, no change from previous version (#120)
- on browser, showed as
- before
Improvements
- add POST API on
/projects
endpoint (#103) - add Dockerfile (#121)
- add document about Docker start (#122)
- update documents (#123)
- add about "Edit a line" view
Test
- add Windows OS test on Appveyor (#116)
v0.3.0
Release v0.3.0
DB schema is updated, please don't forget to execute chainerui db upgrade
command after upgrade ChainerUI.
Changes without Compatibility
- drawing log is sampled (#92)
- default max count is
1000
- users can change max count of sampling in Global settings
- default max count is
New features
- select align of result name (#32)
- users can change align in Global settings
- add
episode
andstep
values on summary pane (#94) - improve UX of result table with react-table (#96)
- categorized rows, line sort etc.
Improvements
- add DB revision check (#76)
Performance turning
- update recharts version, drawing is faster (#77)
- clear plot data on location change (#85)
- loading log file only when file is updated (#75)
- log data type is changed to binary type (#73)
- remove duplicated dispatch of xxx_REQUEST action (#88)
Bug fixes
v0.2.0
Release v0.2.0
New features
- manual stop button (#10, #47)
- stop the target training loop from detail page
- log report util (#38)
- support a training loop without
Trainer
to show a chart
- support a training loop without
- bulk check box on result table (#52)
- support
episode
andstep
key as x-axis (#63)- if
log
file hasepisode
orstep
key, these keys are assumed as x-axis key
- if
- official users guide (#44)
Improvements
- Commands are allowed only when the training job is running (#60)
- if the training job is not running, return
400
- if the training job is not running, return
Performance turning
- avoid formed JSON printed in server side (#28)
- avoid duplicating API request (#37)
- remove "dot" from a chart (#58)
Bus fixes
v0.1.1
This version includes bug fixes and some improvements.
Bug fixes
- fix DB create API to support python2.7 (#4)
- fix
save_args
functions to supportsdict
type (#11, thanks @marevol!) - fix API status when DB is not created (#13)
- support logs includes
NaN
(#20) - fix client error (#19)
Enhancement
- show version (#15)
- add
--version
option onchainerui
command - add
chainerui.__version__
variable
- add
- add
--debug
option to run server with debug mode (#21)