Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nam
ProxPython
Commits
284d8efb
Commit
284d8efb
authored
Sep 24, 2020
by
s.gretchko
Browse files
Added all source localization demos
parent
6d6c5a08
Changes
48
Hide whitespace changes
Inline
Side-by-side
demos/source_location10_AvP.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'AvP'
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_AvP2.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'AvP2'
,
formulation
=
'NSLS'
,
lambda_0
=
0.3
,
lambda_max
=
0.3
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_AvP2_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'AvP2'
,
formulation
=
'NSLS'
,
lambda_0
=
0.3
,
lambda_max
=
0.3
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_CDR.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'CDRl'
,
formulation
=
'cyclic'
,
lambda_0
=
1
,
lambda_max
=
1
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_CDR_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'CDRl'
,
formulation
=
'cyclic'
,
lambda_0
=
1
,
lambda_max
=
1
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_CDRl.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'CDRl'
,
formulation
=
'cyclic'
,
lambda_0
=
0.33
,
lambda_max
=
0.33
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_CDRl_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'CDRl'
,
formulation
=
'cyclic'
,
lambda_0
=
0.33
,
lambda_max
=
0.33
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_CP.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'CP'
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_CP_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'CP'
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DR.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DRl'
,
lambda_0
=
1.0
,
lambda_max
=
1.0
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DRAP.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DRAP'
,
lambda_0
=
0.25
,
lambda_max
=
0.25
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DRAP_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DRAP'
,
lambda_0
=
0.25
,
lambda_max
=
0.25
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DR_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DRl'
,
lambda_0
=
1.0
,
lambda_max
=
1.0
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DRl.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DRl'
,
lambda_0
=
0.85
,
lambda_max
=
0.85
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DRl_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DRl'
,
lambda_0
=
0.85
,
lambda_max
=
0.85
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DyRePr.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DyRePr'
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_DyRePr_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'DyRePr'
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_FPG.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'AvP'
,
accelerator_name
=
'GenericAccelerator'
,
sensors
=
10
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location10_FPG_noise.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'AvP'
,
accelerator_name
=
'GenericAccelerator'
,
sensors
=
10
,
noise
=
True
)
sourceExp
.
run
()
sourceExp
.
show
()
demos/source_location3_AvP.py
0 → 100644
View file @
284d8efb
import
SetProxPythonPath
from
proxtoolbox.experiments.sourceloc.sourceLocExperiment
import
SourceLocExperiment
sourceExp
=
SourceLocExperiment
(
algorithm
=
'AvP'
)
sourceExp
.
run
()
sourceExp
.
show
()
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment