Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NIFTy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
10
Issues
10
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ift
NIFTy
Commits
20f956d8
Commit
20f956d8
authored
Jul 14, 2017
by
Martin Reinecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more tweaks
parent
1ffad5a8
Pipeline
#14888
passed with stage
in 7 minutes and 33 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
23 deletions
+15
-23
demos/critical_filtering.py
demos/critical_filtering.py
+5
-5
nifty/energies/line_energy.py
nifty/energies/line_energy.py
+4
-1
nifty/minimization/line_searching/line_search_strong_wolfe.py
...y/minimization/line_searching/line_search_strong_wolfe.py
+6
-17
No files found.
demos/critical_filtering.py
View file @
20f956d8
...
...
@@ -76,8 +76,8 @@ if __name__ == "__main__":
# Choosing the measurement instrument
#
Instrument = SmoothingOperator(s_space, sigma=0.01)
Instrument
=
DiagonalOperator
(
s_space
,
diagonal
=
1.
)
Instrument
=
SmoothingOperator
(
s_space
,
sigma
=
0.01
)
#
Instrument = DiagonalOperator(s_space, diagonal=1.)
# Instrument._diagonal.val[200:400, 200:400] = 0
#Instrument._diagonal.val[64:512-64, 64:512-64] = 0
...
...
@@ -112,11 +112,11 @@ if __name__ == "__main__":
minimizer1
=
RelaxedNewton
(
convergence_tolerance
=
1e-2
,
convergence_level
=
2
,
iteration_limit
=
3
,
iteration_limit
=
5
,
callback
=
convergence_measure
)
minimizer2
=
VL_BFGS
(
convergence_tolerance
=
1e-3
,
iteration_limit
=
7
0
,
iteration_limit
=
2
0
,
callback
=
convergence_measure
,
max_history_length
=
10
)
minimizer3
=
SteepestDescent
(
convergence_tolerance
=
1e-3
,
...
...
@@ -143,7 +143,7 @@ if __name__ == "__main__":
# Initializing the power energy with updated parameters
power_energy
=
CriticalPowerEnergy
(
position
=
t0
,
m
=
m0
,
D
=
D0
,
smoothness_prior
=
10.
,
samples
=
3
)
(
power_energy
,
convergence
)
=
minimizer
2
(
power_energy
)
(
power_energy
,
convergence
)
=
minimizer
3
(
power_energy
)
# Setting new power spectrum
...
...
nifty/energies/line_energy.py
View file @
20f956d8
...
...
@@ -107,4 +107,7 @@ class LineEnergy:
@
property
def
dd
(
self
):
return
self
.
energy
.
gradient
.
vdot
(
self
.
linedir
)
res
=
self
.
energy
.
gradient
.
vdot
(
self
.
linedir
)
assert
abs
(
res
-
res
.
real
)
<
1e-12
,
\
"directional derivative has non-negligible imaginary part"
return
res
.
real
nifty/minimization/line_searching/line_search_strong_wolfe.py
View file @
20f956d8
...
...
@@ -61,12 +61,9 @@ class LineSearchStrongWolfe(LineSearch):
"""
# def __init__(self, c1=1e-4, c2=0.9,
# max_step_size=1000000000, max_iterations=100,
# max_zoom_iterations=100):
def
__init__
(
self
,
c1
=
1e-4
,
c2
=
0.9
,
max_step_size
=
50
,
max_iterations
=
1
0
,
max_zoom_iterations
=
10
):
max_step_size
=
1000000000
,
max_iterations
=
10
0
,
max_zoom_iterations
=
10
0
):
super
(
LineSearchStrongWolfe
,
self
).
__init__
()
...
...
@@ -116,10 +113,6 @@ class LineSearchStrongWolfe(LineSearch):
phiprime_0
=
le_0
.
dd
assert
phiprime_0
<
0
,
"input direction must be a descent direction"
if
phiprime_0
==
0
:
self
.
logger
.
warn
(
"Flat gradient in search direction."
)
return
0.
,
0.
# set alphas
alpha0
=
0.
if
self
.
preferred_initial_step_size
is
not
None
:
...
...
@@ -137,12 +130,8 @@ class LineSearchStrongWolfe(LineSearch):
# start the minimization loop
for
i
in
xrange
(
max_iterations
):
#print "a0a1:",alpha0, alpha1
#print "line search outer iteration", i
le_alpha1
=
self
.
line_energy
.
at
(
alpha1
)
#print "position:", le_alpha1.energy.position.val[0]
phi_alpha1
=
le_alpha1
.
value
#print "energy:", le_alpha1.value
if
alpha1
==
0
:
self
.
logger
.
warn
(
"Increment size became 0."
)
alpha_star
=
0.
...
...
@@ -151,7 +140,7 @@ class LineSearchStrongWolfe(LineSearch):
break
if
(
phi_alpha1
>
phi_0
+
self
.
c1
*
alpha1
*
phiprime_0
)
or
\
((
phi_alpha1
>=
phi_alpha0
)
and
(
i
>
1
)):
((
phi_alpha1
>=
phi_alpha0
)
and
(
i
>
0
)):
(
alpha_star
,
phi_star
,
le_star
)
=
self
.
_zoom
(
alpha0
,
alpha1
,
phi_0
,
phiprime_0
,
...
...
@@ -179,7 +168,7 @@ class LineSearchStrongWolfe(LineSearch):
# update alphas
alpha0
,
alpha1
=
alpha1
,
min
(
2
*
alpha1
,
max_step_size
)
if
alpha1
==
max_step_size
:
print
"
bail
out"
print
"
reached max step size, bailing
out"
alpha_star
=
alpha1
phi_star
=
phi_alpha1
le_star
=
le_alpha1
...
...
@@ -250,8 +239,8 @@ class LineSearchStrongWolfe(LineSearch):
quad_delta
=
0.1
# quadratic
# initialize the most recent versions (j-1) of phi and alpha
alpha_recent
=
0
phi_recent
=
phi_0
alpha_recent
=
None
phi_recent
=
None
for
i
in
xrange
(
max_iterations
):
delta_alpha
=
alpha_hi
-
alpha_lo
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment