diff --git a/README.md b/README.md index 775f798..471b523 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ and displays a list of experiments, their state, Sacred configuration and the standard output from the running program. Python 3.5 and a modern web browser are required for it to work properly. -# Features in version 0.2 +# Features in version 0.3 - Get an overview of running and finished experiments in a table, such as experiment name, machine on which it runs etc. @@ -19,14 +19,15 @@ Python 3.5 and a modern web browser are required for it to work properly. directly from the web console in order to see detailed information, charts and [Tensorflow](https://www.tensorflow.org) graph visualisations, provided that the experiment uses Sacred's - [Integration with Tensorflow](https://github.com/IDSIA/sacred/blob/develop/docs/tensorflow.rst) - (currently in the development branch of Sacred). - + [Integration with Tensorflow](http://sacred.readthedocs.io/en/latest/tensorflow.html) + (does not work with TensorFlow 1.2 now) +- Visualise [Metrics](http://sacred.readthedocs.io/en/latest/collected_information.html#metrics-api) in a chart. +- Use the MongoDB and newly also FileStorage backend (experimental, thanks to [Gideon Dresdner](https://github.com/gideonite)) ## Roadmap ### Further Versions -- Sacred Metrics API data viewer (currently in Sacred development branch) +- Deleting experiments - TBD ## Screenshots diff --git a/docs/source/conf.py b/docs/source/conf.py index 566ab32..0c35978 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '0.2' +version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.2' +release = '0.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/package.json b/package.json index fb40484..4e09011 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sacredboard", - "version": "0.2.0", + "version": "0.3.0", "description": "Sacredboard NPM package file for automatic tests.", "dependencies": {}, "devDependencies": [ diff --git a/setup.py b/setup.py index 9fe54da..78884ce 100644 --- a/setup.py +++ b/setup.py @@ -38,5 +38,5 @@ def get_requirements(): install_requires=get_requirements(), setup_requires=["pytest-runner"], tests_require=["pytest", "mongomock"], - version="0.2" + version="0.3" )