Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Lucas Miranda
deepOF
Commits
3fbe3134
Commit
3fbe3134
authored
Jun 19, 2020
by
lucas_miranda
Browse files
Fixed bug in condition dict loading
parent
4acb4853
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
3fbe3134
/DLC_social_1_exp_conditions.pickle
/examples/.ipynb_checkpoints/
/visualizations/dash_data_1.h5
/visualizations/dash_data_2.h5
/visualizations/dash_data_3.h5
hyperparameter_tuning.py
View file @
3fbe3134
...
...
@@ -82,7 +82,7 @@ tensorboard_callback = keras.callbacks.TensorBoard(log_dir=log_dir, histogram_fr
with
open
(
os
.
path
.
abspath
(
train_path
+
[
i
for
i
in
os
.
listdir
(
train_path
)
if
i
.
endswith
(
".pickle"
)][
0
]
train_path
+
"/"
+
[
i
for
i
in
os
.
listdir
(
train_path
)
if
i
.
endswith
(
".pickle"
)][
0
]
),
"rb"
,
)
as
handle
:
...
...
model_training.py
View file @
3fbe3134
...
...
@@ -150,7 +150,7 @@ tensorboard_callback = keras.callbacks.TensorBoard(log_dir=log_dir, histogram_fr
with
open
(
os
.
path
.
abspath
(
train_path
+
[
i
for
i
in
os
.
listdir
(
train_path
)
if
i
.
endswith
(
".pickle"
)][
0
]
train_path
+
"/"
+
[
i
for
i
in
os
.
listdir
(
train_path
)
if
i
.
endswith
(
".pickle"
)][
0
]
),
"rb"
,
)
as
handle
:
...
...
Write
Preview
Supports
Markdown
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