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
Malthe Kjær Bisbo
GOFEE
Commits
f5970b1b
Commit
f5970b1b
authored
Jan 21, 2020
by
Malthe Kjær Bisbo
Browse files
deleted some print statements
parent
1e343e82
Changes
1
Hide whitespace changes
Inline
Side-by-side
gofee.py
View file @
f5970b1b
...
...
@@ -236,7 +236,7 @@ class GOFEE():
self
.
get_initial_structures
()
while
self
.
steps
<
self
.
max_steps
:
self
.
print_master
(
'
steps:'
,
self
.
steps
)
self
.
print_master
(
'
\n
### steps: {} ###
\n
'
.
format
(
self
.
steps
)
)
self
.
train_surrogate
()
self
.
update_population
()
relaxed_candidates
=
self
.
get_surrogate_relaxed_candidates
()
...
...
@@ -246,15 +246,12 @@ class GOFEE():
for
_
in
range
(
5
):
try
:
anew
=
self
.
select_with_acquisition
(
relaxed_candidates
,
kappa
)
self
.
print_master
(
'aq done'
)
anew
=
self
.
evaluate
(
anew
)
a_add
.
append
(
anew
)
self
.
print_master
(
'sp done'
)
if
self
.
dualpoint
:
adp
=
self
.
get_dualpoint
(
anew
)
adp
=
self
.
evaluate
(
adp
)
a_add
.
append
(
adp
)
self
.
print_master
(
'dp done'
)
break
except
Exception
as
err
:
kappa
/=
2
...
...
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