Skip to content

Instantly share code, notes, and snippets.

@desertnaut
Last active January 10, 2017 16:53
Show Gist options
  • Save desertnaut/d12abdb129b906fc28ca3e46a9745ae2 to your computer and use it in GitHub Desktop.
Save desertnaut/d12abdb129b906fc28ca3e46a9745ae2 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Using TensorFlow backend.\n"
]
}
],
"source": [
"# Jupyter notebook started with command line flag\n",
"# KERAS_BACKEND=tensorflow\n",
"\n",
"import keras"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"'tensorflow'"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"keras.backend.backend()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Although Keras backend is correctly set to TensorFlow, the image dimension ordering is still configured for Theano:"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"'th'"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"keras.backend.image_dim_ordering()"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment