Skip to content
Snippets Groups Projects
Commit 99539a22 authored by lukas leufen's avatar lukas leufen
Browse files

Merge branch 'master' into 'develop'

Master2Dev

See merge request toar/mlair!172
parents 758a55d4 79658233
Branches
Tags
3 merge requests!192include Develop,!191Resolve "release v1.1.0",!172Master2Dev
Pipeline #50325 passed
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## v1.0.0 - 2020-10-08 - official release of new version 1.0.0
### general:
- This is the first official release of MLAir ready for use
- updated license, installation instruction
### technical:
- restructured order of packages in requirements
## v0.12.2 - 2020-10-01 - HDFML support ## v0.12.2 - 2020-10-01 - HDFML support
......
...@@ -29,7 +29,7 @@ HPC systems, see [here](#special-instructions-for-installation-on-jülich-hpc-sy ...@@ -29,7 +29,7 @@ HPC systems, see [here](#special-instructions-for-installation-on-jülich-hpc-sy
* Installation of **MLAir**: * Installation of **MLAir**:
* Either clone MLAir from the [gitlab repository](https://gitlab.version.fz-juelich.de/toar/mlair.git) * Either clone MLAir from the [gitlab repository](https://gitlab.version.fz-juelich.de/toar/mlair.git)
and use it without installation (beside the requirements) and use it without installation (beside the requirements)
* or download the distribution file ([current version](https://gitlab.version.fz-juelich.de/toar/mlair/-/blob/master/dist/mlair-0.12.2-py3-none-any.whl)) * or download the distribution file ([current version](https://gitlab.version.fz-juelich.de/toar/mlair/-/blob/master/dist/mlair-1.0.0-py3-none-any.whl))
and install it via `pip install <dist_file>.whl`. In this case, you can simply import MLAir in any python script and install it via `pip install <dist_file>.whl`. In this case, you can simply import MLAir in any python script
inside your virtual environment using `import mlair`. inside your virtual environment using `import mlair`.
* (tf) Currently, TensorFlow-1.13 is mentioned in the requirements. We already tested the TensorFlow-1.15 version and couldn't * (tf) Currently, TensorFlow-1.13 is mentioned in the requirements. We already tested the TensorFlow-1.15 version and couldn't
......
File added
...@@ -31,7 +31,7 @@ Installation of MLAir ...@@ -31,7 +31,7 @@ Installation of MLAir
* Install all requirements from `requirements.txt <https://gitlab.version.fz-juelich.de/toar/machinelearningtools/-/blob/master/requirements.txt>`_ * Install all requirements from `requirements.txt <https://gitlab.version.fz-juelich.de/toar/machinelearningtools/-/blob/master/requirements.txt>`_
preferably in a virtual environment preferably in a virtual environment
* Either clone MLAir from the `gitlab repository <https://gitlab.version.fz-juelich.de/toar/machinelearningtools.git>`_ * Either clone MLAir from the `gitlab repository <https://gitlab.version.fz-juelich.de/toar/machinelearningtools.git>`_
* or download the distribution file (`current version <https://gitlab.version.fz-juelich.de/toar/mlair/-/blob/master/dist/mlair-0.12.2-py3-none-any.whl>`_) * or download the distribution file (`current version <https://gitlab.version.fz-juelich.de/toar/mlair/-/blob/master/dist/mlair-1.0.0-py3-none-any.whl>`_)
and install it via :py:`pip install <dist_file>.whl`. In this case, you can simply and install it via :py:`pip install <dist_file>.whl`. In this case, you can simply
import MLAir in any python script inside your virtual environment using :py:`import mlair`. import MLAir in any python script inside your virtual environment using :py:`import mlair`.
* (tf) Currently, TensorFlow-1.13 is mentioned in the requirements. We already tested the TensorFlow-1.15 version and couldn't * (tf) Currently, TensorFlow-1.13 is mentioned in the requirements. We already tested the TensorFlow-1.15 version and couldn't
......
__version_info__ = { __version_info__ = {
'major': 0, 'major': 1,
'minor': 12, 'minor': 0,
'micro': 2, 'micro': 0,
} }
from mlair.run_modules import RunEnvironment, ExperimentSetup, PreProcessing, ModelSetup, Training, PostProcessing from mlair.run_modules import RunEnvironment, ExperimentSetup, PreProcessing, ModelSetup, Training, PostProcessing
...@@ -13,7 +13,7 @@ from mlair.model_modules import AbstractModelClass ...@@ -13,7 +13,7 @@ from mlair.model_modules import AbstractModelClass
def get_version(): def get_version():
assert set(__version_info__.keys()) >= {"major", "minor"} assert set(__version_info__.keys()) >= {"major", "minor"}
vers = [f"{__version_info__['major']}.{__version_info__['minor']}"] vers = [f"{__version_info__['major']}.{__version_info__['minor']}"]
if __version_info__["micro"]: if "micro" in __version_info__:
vers.append(f".{__version_info__['micro']}") vers.append(f".{__version_info__['micro']}")
return "".join(vers) return "".join(vers)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment