Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
vpvc_sample_size
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Jörg Martin
vpvc_sample_size
Commits
4b6d37fc
Commit
4b6d37fc
authored
4 years ago
by
Jörg Martin
Browse files
Options
Downloads
Patches
Plain Diff
Adapted Poisson output
parent
e6e68a8e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vpvc_interface/resultmenu.py
+2
-2
2 additions, 2 deletions
vpvc_interface/resultmenu.py
vpvc_interface/setupmenu.py
+2
-2
2 additions, 2 deletions
vpvc_interface/setupmenu.py
with
4 additions
and
4 deletions
vpvc_interface/resultmenu.py
+
2
−
2
View file @
4b6d37fc
...
@@ -217,8 +217,8 @@ class InferenceMenu():
...
@@ -217,8 +217,8 @@ class InferenceMenu():
self
.
lower_expanded_uncertainty_text
.
delete
(
"
1.0
"
,
tk
.
END
)
self
.
lower_expanded_uncertainty_text
.
delete
(
"
1.0
"
,
tk
.
END
)
self
.
upper_expanded_uncertainty_text
.
delete
(
"
1.0
"
,
tk
.
END
)
self
.
upper_expanded_uncertainty_text
.
delete
(
"
1.0
"
,
tk
.
END
)
self
.
median_text
.
insert
(
tk
.
END
,
pretty_string
(
'
Median:
'
,
median
))
self
.
median_text
.
insert
(
tk
.
END
,
pretty_string
(
'
Median:
'
,
median
))
self
.
lower_expanded_uncertainty_text
.
insert
(
tk
.
END
,
pretty_string
(
'
L. exp. uncertainty:
'
,
lower_expanded_uncertainty
))
self
.
lower_expanded_uncertainty_text
.
insert
(
tk
.
END
,
pretty_string
(
'
2.5% quantile:
'
,
median
-
lower_expanded_uncertainty
))
self
.
upper_expanded_uncertainty_text
.
insert
(
tk
.
END
,
pretty_string
(
'
U. exp. uncertainty:
'
,
upper_expanded_uncertainty
))
self
.
upper_expanded_uncertainty_text
.
insert
(
tk
.
END
,
pretty_string
(
'
97.5% quantile:
'
,
median
+
upper_expanded_uncertainty
))
self
.
median_text
.
configure
(
state
=
'
disabled
'
)
self
.
median_text
.
configure
(
state
=
'
disabled
'
)
self
.
lower_expanded_uncertainty_text
.
configure
(
state
=
'
disabled
'
)
self
.
lower_expanded_uncertainty_text
.
configure
(
state
=
'
disabled
'
)
self
.
upper_expanded_uncertainty_text
.
configure
(
state
=
'
disabled
'
)
self
.
upper_expanded_uncertainty_text
.
configure
(
state
=
'
disabled
'
)
...
...
This diff is collapsed.
Click to expand it.
vpvc_interface/setupmenu.py
+
2
−
2
View file @
4b6d37fc
...
@@ -205,12 +205,12 @@ class PrecisionMenu():
...
@@ -205,12 +205,12 @@ class PrecisionMenu():
self
.
status_variable
=
status_variable
self
.
status_variable
=
status_variable
self
.
frame_title
=
tk
.
Label
(
master
,
text
=
'
Precision parameters
'
,
fg
=
color_settings
.
frame_title_color
)
self
.
frame_title
=
tk
.
Label
(
master
,
text
=
'
Precision parameters
'
,
fg
=
color_settings
.
frame_title_color
)
self
.
frame_title
.
grid
(
row
=
0
,
column
=
1
,
sticky
=
tk
.
W
)
self
.
frame_title
.
grid
(
row
=
0
,
column
=
1
,
sticky
=
tk
.
W
)
self
.
eps_label
=
tk
.
Label
(
master
,
text
=
'
U
ncertainty
threshold
'
+
u
'
\u03b5
'
)
self
.
eps_label
=
tk
.
Label
(
master
,
text
=
'
Target u
ncertainty
'
+
u
'
\u03b5
'
)
self
.
eps_entry
=
tk
.
Entry
(
master
,
font
=
self
.
font
)
self
.
eps_entry
=
tk
.
Entry
(
master
,
font
=
self
.
font
)
self
.
eps_label
.
grid
(
row
=
1
,
column
=
0
,
sticky
=
tk
.
E
)
self
.
eps_label
.
grid
(
row
=
1
,
column
=
0
,
sticky
=
tk
.
E
)
self
.
eps_entry
.
grid
(
row
=
1
,
column
=
1
,
sticky
=
tk
.
E
)
self
.
eps_entry
.
grid
(
row
=
1
,
column
=
1
,
sticky
=
tk
.
E
)
self
.
eps_entry
.
insert
(
0
,
0.1
)
self
.
eps_entry
.
insert
(
0
,
0.1
)
self
.
k_label
=
tk
.
Label
(
master
,
text
=
'
Expansion factor
'
)
self
.
k_label
=
tk
.
Label
(
master
,
text
=
'
Expansion factor
k
'
)
self
.
k_entry
=
tk
.
Entry
(
master
,
font
=
self
.
font
)
self
.
k_entry
=
tk
.
Entry
(
master
,
font
=
self
.
font
)
self
.
eps_label
.
grid
(
row
=
1
,
column
=
0
,
sticky
=
tk
.
E
)
self
.
eps_label
.
grid
(
row
=
1
,
column
=
0
,
sticky
=
tk
.
E
)
self
.
eps_entry
.
grid
(
row
=
1
,
column
=
1
,
sticky
=
tk
.
E
)
self
.
eps_entry
.
grid
(
row
=
1
,
column
=
1
,
sticky
=
tk
.
E
)
...
...
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