Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
a36c71f2
Commit
a36c71f2
authored
4 years ago
by
lukas leufen
Browse files
Options
Downloads
Patches
Plain Diff
updated conf
parent
45cb02f5
Branches
Branches containing commit
Tags
Tags containing commit
4 merge requests
!136
update release branch
,
!135
Release v0.11.0
,
!128
Resolve "refactor readme files"
,
!119
Resolve "Include advanced data handling in workflow"
Pipeline
#41121
passed
4 years ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/_source/conf.py
+2
-2
2 additions, 2 deletions
docs/_source/conf.py
docs/_source/get-started.rst
+6
-5
6 additions, 5 deletions
docs/_source/get-started.rst
with
8 additions
and
7 deletions
docs/_source/conf.py
+
2
−
2
View file @
a36c71f2
...
@@ -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
,
'
m
achinelearningtools.tex
'
,
'
MachineLearningTools
Documentation
'
,
(
master_doc
,
'
m
lair.tex
'
,
'
MLAir
Documentation
'
,
author
,
'
manual
'
),
author
,
'
manual
'
),
]
]
...
...
This diff is collapsed.
Click to expand it.
docs/_source/get-started.rst
+
6
−
5
View file @
a36c71f2
Get started with M
achineLearningTools
Get started with M
LAir
======================
===============
======================
Install M
achineLearningTools
Install M
LAir
-------------
---------------
-------------
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,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment