Add cntk backend (#103)

* add cntk backend

* reorder imports
This commit is contained in:
Fariz Rahman
2017-06-10 10:05:11 +04:00
committed by GitHub
parent 0f78409087
commit 14d5ba1227
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -12,3 +12,5 @@ if K.backend() == 'theano':
from .theano_backend import *
elif K.backend() == 'tensorflow':
from .tensorflow_backend import *
elif K.backend() == 'cntk':
from .cntk_backend import *
+2
View File
@@ -0,0 +1,2 @@
from keras.backend import cntk_backend as KCN
import cntk as C