摘要:
数值分析第二章实习题 第一题 拉格朗日插值 test.m 程序: function yy=test(x,y,xx) n=length(x); m=length(y); if n~=m error('x和y的维数必须相同'); return; end p=zeros(1,n); for i=1:n t 阅读全文
摘要:
VGG #从keras.model中导入model模块,为函数api搭建网络做准备 from tensorflow.keras import Model from tensorflow.keras.layers import Flatten,Dense,Dropout,MaxPooling2D,Co 阅读全文