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
bob
bob.learn.tensorflow
Commits
bc1a6059
Commit
bc1a6059
authored
Apr 24, 2019
by
Tiago de Freitas Pereira
Browse files
Fixed mac tests
parent
c5c8a51a
Pipeline
#29570
failed with stage
in 141 minutes and 44 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/learn/tensorflow/test/test_estimator_onegraph.py
View file @
bc1a6059
...
...
@@ -20,6 +20,9 @@ import numpy
import
shutil
import
os
# Fixing problem with MAC https://github.com/dmlc/xgboost/issues/1715
os
.
environ
[
'KMP_DUPLICATE_LIB_OK'
]
=
'True'
tfrecord_train
=
"./train_mnist.tfrecord"
tfrecord_validation
=
"./validation_mnist.tfrecord"
model_dir
=
"./temp"
...
...
bob/learn/tensorflow/test/test_estimator_siamese.py
View file @
bc1a6059
...
...
@@ -18,6 +18,11 @@ from bob.learn.tensorflow.utils import reproducible
import
pkg_resources
import
shutil
# Fixing problem with MAC https://github.com/dmlc/xgboost/issues/1715
import
os
os
.
environ
[
'KMP_DUPLICATE_LIB_OK'
]
=
'True'
tfrecord_train
=
"./train_mnist.tfrecord"
tfrecord_validation
=
"./validation_mnist.tfrecord"
model_dir
=
"./temp"
...
...
bob/learn/tensorflow/test/test_estimator_transfer.py
View file @
bc1a6059
...
...
@@ -13,6 +13,9 @@ from .test_estimator_onegraph import run_logitstrainer_mnist
import
shutil
import
os
# Fixing problem with MAC https://github.com/dmlc/xgboost/issues/1715
os
.
environ
[
'KMP_DUPLICATE_LIB_OK'
]
=
'True'
tfrecord_train
=
"./train_mnist.tfrecord"
tfrecord_validation
=
"./validation_mnist.tfrecord"
model_dir
=
"./temp"
...
...
bob/learn/tensorflow/test/test_estimator_triplet.py
View file @
bc1a6059
...
...
@@ -17,6 +17,10 @@ from .test_estimator_transfer import dummy_adapted
import
shutil
# Fixing problem with MAC https://github.com/dmlc/xgboost/issues/1715
import
os
os
.
environ
[
'KMP_DUPLICATE_LIB_OK'
]
=
'True'
tfrecord_train
=
"./train_mnist.tfrecord"
tfrecord_validation
=
"./validation_mnist.tfrecord"
model_dir
=
"./temp"
...
...
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