【发布时间】:2019-11-01 18:23:23
【问题描述】:
假设我已经用 R 训练了我的 Keras 模型;比如说:
model<-keras_model_sequential() model %>% layer_dense(units=5,activation = "relu",input_shape = c(4))%>% layer_dense(units=Height,activation = "relu",input_shape = c(4)) %>% model %>% layer_dense(units=1)
一旦经过训练,是否可以删除最后一层,同时保持其他所有内容不变?
【问题讨论】:
标签: r tensorflow keras deep-learning