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

updated conf

parent 45cb02f5
Branches
Tags
4 merge requests!136update release branch,!135Release v0.11.0,!128Resolve "refactor readme files",!119Resolve "Include advanced data handling in workflow"
Pipeline #41121 passed
...@@ -17,7 +17,7 @@ sys.path.insert(0, os.path.abspath('../..')) ...@@ -17,7 +17,7 @@ sys.path.insert(0, os.path.abspath('../..'))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'machinelearningtools' project = 'MLAir'
copyright = '2020, Lukas H Leufen, Felix Kleinert' copyright = '2020, Lukas H Leufen, Felix Kleinert'
author = 'Lukas H Leufen, Felix Kleinert' author = 'Lukas H Leufen, Felix Kleinert'
...@@ -118,7 +118,7 @@ latex_elements = { ...@@ -118,7 +118,7 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'machinelearningtools.tex', 'MachineLearningTools Documentation', (master_doc, 'mlair.tex', 'MLAir Documentation',
author, 'manual'), author, 'manual'),
] ]
......
Get started with MachineLearningTools Get started with MLAir
===================================== ======================
Install MachineLearningTools Install MLAir
---------------------------- -------------
MLAir is based on several python frameworks. To work properly, you have to install all packages from the MLAir is based on several python frameworks. To work properly, you have to install all packages from the
`requirements.txt` file. Additionally to support the geographical plotting part it is required to install geo `requirements.txt` file. Additionally to support the geographical plotting part it is required to install geo
...@@ -138,6 +138,7 @@ MLAir provides a default workflow. If additional steps are to be performed, you ...@@ -138,6 +138,7 @@ MLAir provides a default workflow. If additional steps are to be performed, you
the workflow. the workflow.
.. code-block:: python .. code-block:: python
import mlair import mlair
import logging import logging
...@@ -224,7 +225,7 @@ required to implement the set model and set compile options methods. The later h ...@@ -224,7 +225,7 @@ required to implement the set model and set compile options methods. The later h
x_in = keras.layers.Dense(self.window_lead_time)(x_in) x_in = keras.layers.Dense(self.window_lead_time)(x_in)
out = self.activation()(x_in) out = self.activation()(x_in)
self.model = keras.Model(inputs=x_input, outputs=[out]) self.model = keras.Model(inputs=x_input, outputs=[out])
def set_compile_options(self): def set_compile_options(self):
self.compile_options = {"optimizer": SGD(lr=self.lr), self.compile_options = {"optimizer": SGD(lr=self.lr),
"loss": mse, "loss": mse,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment