Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Compare revisions
77a6b1fae1b187fc5f22f30638387f3849b55e70 to 46166970f3ea7152a3d6b8ca8b9adaa7951b7aaa
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
calibration/pycalibration
Select target project
No results found
46166970f3ea7152a3d6b8ca8b9adaa7951b7aaa
Select Git revision
Swap
Target
calibration/pycalibration
Select target project
calibration/pycalibration
1 result
77a6b1fae1b187fc5f22f30638387f3849b55e70
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
xfel_calibrate/notebooks.py
+1
-1
1 addition, 1 deletion
xfel_calibrate/notebooks.py
xfel_calibrate/settings.py
+4
-15
4 additions, 15 deletions
xfel_calibrate/settings.py
with
5 additions
and
16 deletions
xfel_calibrate/notebooks.py
View file @
46166970
...
@@ -170,7 +170,7 @@ notebooks = {
...
@@ -170,7 +170,7 @@ notebooks = {
"
notebook
"
:
"
notebook
"
:
"
notebooks/Jungfrau/Jungfrau_dark_analysis_all_gains_burst_mode_NBC.ipynb
"
,
# noqa
"
notebooks/Jungfrau/Jungfrau_dark_analysis_all_gains_burst_mode_NBC.ipynb
"
,
# noqa
"
concurrency
"
:
{
"
parameter
"
:
"
karabo_da
"
,
"
concurrency
"
:
{
"
parameter
"
:
"
karabo_da
"
,
"
default concurrency
"
:
None
,
"
default concurrency
"
:
list
(
range
(
8
))
,
"
cluster cores
"
:
4
},
"
cluster cores
"
:
4
},
},
},
"
CORRECT
"
:
{
"
CORRECT
"
:
{
...
...
This diff is collapsed.
Click to expand it.
xfel_calibrate/settings.py
View file @
46166970
import
os
import
os
import
sys
# path into which temporary files from each run are placed
# path into which temporary files from each run are placed
temp_path
=
"
{}/temp/
"
.
format
(
os
.
getcwd
()
)
temp_path
=
os
.
path
.
abspath
(
"
temp/
"
)
# Path to use for calling Python. If the environment is correctly set, simply the command
# Path to use for calling Python. By default, the Python xfel-calibrate is run in.
python_path
=
"
python
"
python_path
=
sys
.
executable
# Path to use for calling iPython. If the environment is correctly set, simply the command
ipython_path
=
"
ipython
"
# Path to use for calling Jupyter. If the environment is correctly set, simply the command
jupyter_path
=
"
jupyter
"
# Path to find activate script
activate_path
=
""
# Path to use for calling ipcluster. If the environment is correctly set, simply the command
ipcluster_path
=
"
ipcluster
"
# Path to store reports in
# Path to store reports in
report_path
=
"
{}/calibration_reports/
"
.
format
(
os
.
getcwd
())
report_path
=
"
{}/calibration_reports/
"
.
format
(
os
.
getcwd
())
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
Next