keras-docs-zh
keras-docs-zh copied to clipboard
Chinese (zh-cn) translation of the Keras documentation.
 仓库中关于example的资料已经没有了。 跳转后显示Page not found
Feedback: The link to an edit button in the upper right corner of the website is wrong, please update. Maybe you can link it to this project. 
引用格式是什么
作为参考文献的引用格式怎么写?
目录生成错误
如图所示, 在ubuntu下采用火狐浏览器, 打开https://keras.io/zh/总是出现左边的排版错误, 其中: 快速开始, 模型, layers, 数据预处理等4章无法打开, 这个问题已经持续了有一周了。 
keras.backend.image_data_format() 原作者注释写成'channels_first' 不过现在 都是last了,
输入:`x_train=np.random.random((32,30,300)) y_train=np.random.randint(2,size=(32,30,1))` 模型A:`inputs=Input(shape=(None,300)) lstm=LSTM(40,return_sequences=True)(inputs) outer=TimeDistributed(Dense(1,activation='sigmoid'))(lstm)` 模型B:‘inputs=Input(shape=(30,300)) lstm=LSTM(40,return_sequences=True)(inputs) outer=TimeDistributed(Dense(1,activation='sigmoid'))(lstm)’ 二者都不会报错,请问准确率各方面有什么区别吗?
Hi, I wanna to extract the weights from VGG model in the keras library for further other usage. And I read the weights from the following script ``` from keras.applications.vgg16...
https://keras.io/zh/ 左上角输入中文搜索失败,英文OK,验证多浏览器均有此问题。