Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Releases: chainer/chainerui

v0.5.0a1

11 Aug 10:29
bfc421d
Compare
Choose a tag to compare

test release for v0.5.0

v0.5.0

13 Aug 01:36
82088ce
Compare
Choose a tag to compare

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)

    • download shown log chart
  • result command buttons are show on collapsable table row (accordion) (#118)

    • link to result detail page is "Detail" button, ID number is removed

Improvements

  • modify view on single column like smartphone, chart component is on top (#137)
    • before: , after:

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

05 Jul 08:38
3c70d6c
Compare
Choose a tag to compare

Release v0.4.0

Changes without Compatibility

  • change args file style, followed by raw json 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)

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

09 Jun 04:07
3991324
Compare
Choose a tag to compare

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

New features

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

  • prevent to crash when logs contain anything else than numbers or strings (#95, thanks @Bartzi !)
  • resolve to version dependency of Flask, support version 1.0+ (#99)
  • prevent to crash when logs are invalid JSON style (#111)

v0.2.0

31 Jan 05:18
4a580fe
Compare
Choose a tag to compare

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
  • bulk check box on result table (#52)
  • support episode and step key as x-axis (#63)
    • if log file has episode or step key, these keys are assumed as x-axis key
  • 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

Performance turning

  • avoid formed JSON printed in server side (#28)
  • avoid duplicating API request (#37)
  • remove "dot" from a chart (#58)

Bus fixes

  • fix typo (#29, #35, #39, thx @MannyKayy !)
  • fix error message (#50, #45)
  • fix project order on home (#55)
  • return 404 when accessing invalid result page (#65)

v0.1.1

28 Dec 02:16
f7b9608
Compare
Choose a tag to compare

This version includes bug fixes and some improvements.

Bug fixes

  • fix DB create API to support python2.7 (#4)
  • fix save_args functions to supports dict 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 on chainerui command
    • add chainerui.__version__ variable
  • add --debug option to run server with debug mode (#21)

Improvements

  • start to use CI service (#6, #8)
  • modify README.md (#5, #9)

v0.1.0

15 Dec 09:05
1b172d4
Compare
Choose a tag to compare

ChainerUI is released!

ChainerUI is a web application to watch training logs and operate training jobs for Chainer users. It helps them to monitor and manage training jobs.