1.只将梯度下降函数改为selu
分类问题 selu函数能缓解梯度消失
import tensorflow as tf
import matplotlib as mpl
import matplotlib.pyplot as pltimport numpy as np
import sklearn
import pandas as pd
import os
import sys
import time
from tensorflow import keras
…
深层神经网络其实对比之前的分类模型,他的网络层数更深,层数更多,但是,有时候也会造成过拟合的风险因为参数过多,导致全部拟合完容易记住样本。
model keras.models.Sequential()
model.add(keras.layers.Flatten(in…
torch.nn.SELU
原型 CLASS torch.nn.SELU(inplaceFalse) 参数
inplace (bool, optional) – 可选的是否为内部处理. 默认为 False
定义
Applied element-wise, as: SELU ( x ) s c a l e ∗ ( max ( 0 , x ) min ( 0 , α ∗ ( exp ( x ) − 1 ) ) ) \…