字节cv岗校招面经


一面:

1.lr损失函数公式:cost()=-y*log(h(x))-(1-y)*log(1-h(x))

2.rnn公式:sum((h(x_i)-y_i)^2) i=1,2,...,n

3.faster-rcnn原理

4.聊竞赛项目

5.图像卷积,c++实现,敲代码:

void g(unsigned char* pImg, unsigned char* pFilter, unsigned char* pOutImg, int s){

unsigned char ret = 0;

for(int i = 0; i < s; i++){

for(int j = 0; j < s; j++){

pOutImg[i][j] += (pImg+i*j)*(pFilter+s*s-1-i*j);

}

}

}

void f(unsigned char* pImg, int w, int h, unsigned char* pFilter, int s, unsigned char* pOutImg){

memset(pOutImg, 0, sizeof(pOutimg));

for(int i = 0; i < h-s; i++){

for(int j = 0; j < w-s; j++){

g(pImg+i*(w)+j, pFilter, pOutImg+i*(w-s+1)+j, s);

}

}

}



二面:

1.多机分配CNN,公用model机器

2.矩阵右旋,leetcode原题

3.01 nm矩阵找最大1的子矩阵,leetcode 原题,他当场现找的题他也不太会。。。

4.多模态怎么分类,特征怎么融合,他也不太懂



三面:

一个36、37岁的人

估计他困了,一直让我说,继续继续

经验:一定要记清楚项目细节



#面经##校招##字节跳动##计算机视觉岗#
全部评论
写的很棒呀!感谢同学的分享!欢迎大家参加秋招面经征集活动技术专场 分享面经即有机会获得100元京东卡和牛客精美周边哟! (活动详情:https://www.nowcoder.com/discuss/445455)
点赞 回复
分享
发布于 2020-08-27 18:41
lz面的哪个部门,过了吗?
点赞 回复
分享
发布于 2020-09-03 16:57
阅文集团
校招火热招聘中
官网直投
老哥,你的rnn公式是不是写错啦,望回复
点赞 回复
分享
发布于 2020-09-06 10:23

相关推荐

5 24 评论
分享
牛客网
牛客企业服务