
模型训练
会发paper的学渣
Computer knows how to connect zero with one,Mathmatic get how to skip from one to infinity
展开
-
cube-studio 部署过程
cube-studio 部署过程原创 2022-08-04 16:33:03 · 2589 阅读 · 2 评论 -
模型结构图输出
import tensorflow as tffrom keras.utils.vis_utils import plot_modelinput = tf.keras.Input(shape=(100,), dtype='int32', name='input')x = tf.keras.layers.Embedding( output_dim=512, input_dim=10000, input_length=100)(input)x = tf.keras.layers.LSTM(3.原创 2022-04-08 16:10:30 · 1647 阅读 · 0 评论 -
layers.Normalization
标准化,就是执行特征标准化层,第一种方式:通过数据计算出均值和方差:adapt_data = np.array([[0., 7., 4.], [2., 9., 6.], [0., 7., 4.], [2., 9., 6.]], dtype='float32')input_data = np.array([[0., 7., 4.]], dt原创 2022-04-08 13:58:07 · 2165 阅读 · 4 评论 -
wave2lip训练
论文:https://arxiv.org/pdf/2008.10010.pdf训练源码:https://github.com/Rudrabha/Wav2Lip训练配置:首先必须依赖GPU下载源码,下载专家判别系统:Sign in to your account并将模型放到checkpoints文件目录下第一步:准备视频数据,爬取可以通过硕鼠爬取想要的人物说话风格数据第二步:执行preprocess.py,执行命令如下:python preprocess.py --ngpu 1.原创 2022-03-11 11:18:10 · 11725 阅读 · 51 评论