小米 多媒体算法工程师一面面经
1.SyN算法(微分流形)
2.梯度下降
求y=x^2的最速下降(一阶)
def show(ind):
dy = 2*ind
while abs(dy)>0.00001:
ind = ind -dy*0.1
dy = 2*ind
print(ind,ind**2)
show(5)
3.Rest-Net 结构encoder和style Encoder
4.解决错误变形的方法
1.SyN算法(微分流形)
2.梯度下降
求y=x^2的最速下降(一阶)
def show(ind):
dy = 2*ind
while abs(dy)>0.00001:
ind = ind -dy*0.1
dy = 2*ind
print(ind,ind**2)
show(5)
3.Rest-Net 结构encoder和style Encoder
4.解决错误变形的方法
相关推荐