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

updated conf

parent 45cb02f5
No related branches found
No related tags found
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('../..'))
# -- Project information -----------------------------------------------------
project = 'machinelearningtools'
project = 'MLAir'
copyright = '2020, Lukas H Leufen, Felix Kleinert'
author = 'Lukas H Leufen, Felix Kleinert'
......@@ -118,7 +118,7 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'machinelearningtools.tex', 'MachineLearningTools Documentation',
(master_doc, 'mlair.tex', 'MLAir Documentation',
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
`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
the workflow.
.. code-block:: python
import mlair
import logging
......@@ -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)
out = self.activation()(x_in)
self.model = keras.Model(inputs=x_input, outputs=[out])
def set_compile_options(self):
self.compile_options = {"optimizer": SGD(lr=self.lr),
"loss": mse,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment