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
a6bf0cb8
Commit
a6bf0cb8
authored
5 years ago
by
lukas leufen
Browse files
Options
Downloads
Patches
Plain Diff
first try to use pre commit hook
parent
a87a67a1
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!125
Release v0.10.0
,
!124
Update Master to new version v0.10.0
,
!103
Lukas tech apply changes from 119
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+33
-0
33 additions, 0 deletions
CHANGELOG.md
src/__init__.py
+18
-0
18 additions, 0 deletions
src/__init__.py
with
51 additions
and
0 deletions
CHANGELOG.md
0 → 100644
+
33
−
0
View file @
a6bf0cb8
# Changelog
All notable changes to this project will be documented in this file.
## v0.9.0 - 2020-04-15 - faster bootstraps, extreme value upsamling
### general
-
improved and faster bootstrap workflow
-
new plot PlotAvailability
-
extreme values upsampling
-
improved runtime environment
### new features
-
entire bootstrap workflow has been refactored and much faster now, can be skipped with
`evaluate_bootstraps=False`
, #60
-
upsampling of extreme values, set with parameter
`extreme_values=[your_values_standardised]`
(e.g.
`[1, 2]`
) and
`extremes_on_right_tail_only=<True/False>`
if only right tail of distribution is affected or both, #58, #87
-
minimal data length property (in total and for all subsets), #76
-
custom objects in model class to load customised model objects like padding class, loss, #72
-
new plot for data availability:
`PlotAvailability`
, #103
-
introduced (default)
`plot_list`
to specify which plots to draw
-
latex and markdown information on sample sizes for each station, #90
### technical
-
implemented tests on gpu and from scratch for develop, release and master branches, #95
-
usage of tensorflow 1.13.1 (gpu / cpu), separated in 2 different requirements, #81
-
new abstract plot class to have uniform plot class design
-
New time tracking wrapper to use for functions or classes
-
improved logger (info on display, debug into file), #73, #85, #88
-
improved run environment, especially for error handling, #86
-
prefix
`general`
in data store scope is now optional and can be skipped. If given scope is not
`general`
, it is
treated as subscope, #82
-
all 2D Padding classes are now selected by
`Padding2D(padding_name=<padding_type>)`
e.g.
`Padding2D(padding_name="SymPad2D")`
, #78
-
custom learning rate (or lr_decay) is optional now, #71
This diff is collapsed.
Click to expand it.
src/__init__.py
+
18
−
0
View file @
a6bf0cb8
__version_info__
=
{
'
major
'
:
1
,
'
minor
'
:
0
,
'
micro
'
:
0
,
}
def
get_version
(
short
=
False
):
assert
__version_info__
[
"
releaselevel
"
]
in
(
"
alpha
"
,
"
beta
"
,
"
final
"
)
vers
=
[
f
"
{
__version_info__
[
'
major
'
]
}
.
{
__version_info__
[
'
minor
'
]
}
"
]
if
__version_info__
[
"
micro
"
]:
vers
.
append
(
f
"
.
{
__version_info__
[
'
micro
'
]
}
"
)
return
""
.
join
(
vers
)
__version__
=
get_version
()
__author__
=
"
Lukas H. Leufen, Felix Kleinert
"
__email__
=
"
l.leufen@fz-juelich.de
"
,
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