Skip to content

保研面试 #11

@Blue-radish

Description

@Blue-radish

面试经历

南开大学(计算机学院)

  • 每个老师/实验室都会给一些考核来筛选人。我找的老师有三轮考核;
  • 第一轮考核,做虚假信息检测任务。第一个任务是分析数据,有多少真信息多少假信息。第二个任务是训练两层的RNN, LSTM和GRU模型,模型隐层节点数量参数值的调节范围是{64,128,256},计算模型在验证集上的的Precision、Recall、F1、Accuracy、AUC指标。第三个任务是训练一个两层的transformer模型和一个BERT base模型,计算模型在验证集上的的Precision、Recall、F1、Accuracy、AUC指标。面试问代码,还有怎么优化,我用了FocalLoss和重采样解决不平衡问题,面完老师很满意。
  • 第二轮考核,用强化学习做虚假信息检测任务;
  • 第三轮考核,读一个40多页的英文文献,面试时回答问题;
  • 卡六级挂了。

北京科技大学(智能科学与技术学院/AI3D实验室)

  • 中文自我介绍;
  • 问项目;
  • “你有什么想问吗?”宿舍咋样。

东北大学(计算机科学与工程学院)

  • 导师团线上面试,单机位,有7个老师在会议内。中文自我介绍,然后用PPT讲5~7min项目;

  • 英文提问:
    对学校的介绍
    I am from XXX University, and I majored in artificial intelligence.
    XXX University is strong in XX. But its basic computer classes are also very good. We studied key subjects like programming, algorithms and machine learning. So I have a solid foundation in AI.
    My university focuses on theory and practice. I have also taken part in many projects related to AI. These experiences helped me understand AI better and improve my engineering skills.
    Thank you.
    我来自XXX大学,我的专业是人工智能。
    XXX大学在XX方面很强。但它的基础计算机课程也非常好。我们学习了编程、算法和机器学习等核心课程。因此,我在人工智能方面有坚实的基础。
    我的大学注重理论和实践。我参与了一些与人工智能相关的项目。这些经历不仅加深了我对人工智能的理解,也提高了我的工程技能。
    谢谢。
    对AI的看法
    I think AI is a very useful technology. It helps people a lot in daily life. For example, chatbots like ChatGPT, and AI translation apps.
    But AI has some problems too. First, it needs lots of good data to work well. Sometimes, it can’t explain why it makes a certain decision. Also, we need to make sure AI helps people and won’t hurt them.
    I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.
    Thank you.
    我认为人工智能是一项非常有用的技术。它在日常生活中帮助人们很多。例如,像ChatGPT这样的聊天机器人,以及人工智能翻译应用程序。
    但人工智能也存在一些问题。首先,它需要大量优质的数据才能正常工作。有时,它无法解释为何会做出某个决定。此外,我们需要确保人工智能是公平的,不会伤害人们。
    我想学习人工智能,因为我希望找到改进它的方法。我相信,努力工作可以帮助人工智能更安全地帮助更多人。
    谢谢。

  • 项目提问;

  • 专业课提问。问了三个:
    忘了
    PC寄存器作用
    进程和线程是什么关系

西北工业大学(计算机学院)

  • 课题组面试,椭圆形桌子,对面坐满老师。上来先放一个英文文章,让读一遍,然后翻译;
  • 让说一个1到20的数字,我说了13,老师拿出第13号档案袋:
    政治问题,东数西算的作用
    主要是为了让资源分配更合理。西部地区相比东部沿海地区电力等资源有冗余,这样做能更好利用西部的资源。
    数学问题,什么是线性相关、线性无关
    是不是线性相关取决于能不能通过计算把其中一些向量变成零向量的形式。比如一个向量组,要是能找到一些标量乘上其中一些向量,加起来等于零向量,那它们就是线性相关的。
    AI问题,什么是激活函数,以及它的作用。
    激活函数比如ReLU、sigmoid,作用是引入非线性。
    AI问题,如何解决数据不平衡
    方法有很多。比如从loss函数角度,可以改用Focal Loss这样的损失函数,或者直接通过统计之类的先验知识直接对类别做加权,使得优化时更注重数量较少的数据。
    从数据角度,可以做数据重采样,上采样就是对相对较少的数据做不放回抽样,直到相对平衡;还有对相对较少的数据做数据增强,比如图片数据可以加noise、高斯模糊来增加数量直到达到平衡。
    还有可以从模型架构上下手,比如NER这样的任务,其实它的数据也是一种不平衡,可以用CRF替换掉Softmax,直接预测整个序列出现的概率。
    专业课问题,为什么要做并发控制
    为了防止数据重入,出现一些对数据的非法的读写操作,能保证事务之间的隔离性。
    专业课问题,计算机网络???、???、???三个协议的特点及适用场景
    忘了。
    专业课问题,云计算用了哪些技术
    互联网技术。
    专业课问题,给定一个数组,获取数组中三个连续元素的最大和,请给出你的编程思路
    穷举。
    专业课问题,说明CISC和RISC指令集架构的主要区别
    CISC就是复杂指令集,RISC是精简指令集。使用CISC的比如叉86,使用RISC比如arm,区别主要是复杂指令集的指令更长更复杂,精简指令集的指令相对简单这样。
    专业课问题,辅存是干什么的?是用什么做的
    辅存比如固态硬盘、机械硬盘,主要是存储一些视频、文本之类的文件。
  • 项目提问,主要问论文。

大连理工大学(软件学院)

  • 线上面试,前后双机位。上来先2分钟英文自我介绍;
  • 用PPT讲8分钟项目;
  • 问了些无关痛痒的问题。
  • “你有什么想问我们吗?”没有。

自我介绍 / 自己紹介 / Self-Introduction

外语自我介绍

老师们好。大家好。
Hello, teachers. Hello, everyone.
先生方(せんせいがた)、皆(みな)さん、こんにちは。

我叫XXX,就读于XXX大学人工智能专业。
I am honored to introduce myself here. My name is XXX. I am from XXX University, and I majored in artificial intelligence.
很荣幸能在此介绍自己。我叫XXX,来自XXX大学,专业是人工智能。
ここで自分(じぶん)を紹介(しょうかい)できることを光栄(こうえい)に思(おも)います。私(わたし)はXXXと申(もう)します。XXX大学(XXXだいがく)の学生(がくせい)で、専攻(せんこう)は人工知能(じんこうちのう)です。

经过三年的学习,我在人工智能领域打下了扎实的基础,学习了深度学习、自然语言处理与计算机视觉等方面的知识。在这三年中,我参与发表了 1 篇 SCI 论文、1 篇会议论文,多次参与人工智能与机器人相关赛事,并获得了 9 项国家级奖项,例如中国机器人及人工智能大赛一等奖。比如在中国软件杯中,我使用 ROS 操控宇树科技机器狗,运用 PPO 强化学习、目标检测、百度文心大模型等技术完成任务;在 NAACL 的一个研讨会上,我开发了 BERT+LSTM+CRF 模型来应对古汉语命名实体识别的国际评测任务,成果获 Oral 报告录用。
After three years of study, I have a solid foundation in the field of artificial intelligence. I have learned knowledge about deep learning, natural language processing and computer vision. In these three years, I have participated in publishing 1 SCI paper and 1 conference paper. I have also taken part in many competitions related to artificial intelligence and robotics, and won 9 national awards, such as the first prize in the China Robotics and Artificial Intelligence Competition. For example, in the China Software Cup, I used ROS to control the Unitree robot dog. I used technologies like PPO reinforcement learning, object detection and Baidu Wenxin large model to complete tasks. At a workshop of NAACL, I developed a BERT+LSTM+CRF model to address the international evaluation task of ancient Chinese named entity recognition, and the results were accepted for an Oral presentation.
3 年間(さんねんかん)の学習(がくしゅう)を通(つう)じて、人工知能(じんこうちのう)の分野(ぶんや)にしっかりとした基礎(きそ)を築(きず)きました。ディープラーニング、自然言語処理(しぜんげんごしょり)、コンピュータビジョンなどの知識(ちしき)を学(まな)びました。この 3 年間(さんねんかん)で、SCI 論文(ろんぶん)1 編(へん)、学会(がっかい)論文(ろんぶん)1 編(へん)の発表(はっぴょう)に参加(さんか)し、人工知能(じんこうちのう)とロボットに関(かん)する大会(たいかい)に多数(たすう)参加(さんか)しました。さらに、チャイナ・ロボティクス・アンド・アーティフィシャル・インテリジェンス・コンペティション(China Robotics and Artificial Intelligence Competition)一等賞(いっとうしょう)など、国家级(こっかきゅう)の賞(しょう)を 9 つ獲得(かくとく)しました。例(たと)えば、中国ソフトウェアカップ(China Software Cup)では、ROS を使(つか)って宇樹科技(ユニトリー)のロボット犬(いぬ)を操作(そうさ)し、PPO 強化学習(きょうかくがくしゅう)、目標検出(もくひょうけんしゅつ)、百度文心大模型(バイドゥ・ウェンシン大規模モデル)などの技術(ぎじゅつ)を利用(りよう)して任務(にんむ)を完成(かんせい)させました。NAACL のあるワークショップでは、BERT+LSTM+CRF モデルを開発(かいはつ)して古漢語(こかんご)の固有表現認識(こゆうひょうげんにんしき)の国際評価任務(こくさいひょうかにんむ)に対処(たいしょ)し、その成果(せいか)は Oral 報告(ほうこく)として採用(さいよう)されました。

这些经历不仅加深了我对人工智能的理解,也提升了我的工程实践能力。我希望学习人工智能,是因为我想让这项技术变得更好。而且我相信,通过努力,人工智能能够安全地帮助更多人。
These experiences have not only deepened my understanding of AI but also boosted my practical engineering skills. I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.
これらの経験(けいけん)は、AI への理解(りかい)を深(ふか)めただけでなく、実践的(じっせんてき)なエンジニアリングスキルも向上(こうじょう)させました。私(わたし)が AI を学(まな)びたいのは、この技術(ぎじゅつ)をより良(よ)くしたいと思(おも)うからです。そして、努力(どりょく)すれば AI が安全(あんぜん)に更多(さらにおお)くの人(ひと)を助(たす)けることができると信(しん)じています。

感谢您抽出时间并予以关注!
Thank you for your time and attention!
時間(じかん)を割(わ)いて関心(かんしん)を持(も)っていただき、ありがとうございます。

文法

  • “I am honored to + 动词原形 + 地点.”(表达做某事的荣幸及场合)
    例:I am honored to introduce myself here.
  • “My name is + 姓名. I am from + 学校,and I majored in + 专业.”(介绍基本信息:姓名、学校、专业,“majored in” 更强调已完成的专业学习经历,符合 “就读于 / 来自某大学某专业” 的语境)
    例:My name is Lu Shige. I am from XXX University, and I majored in artificial intelligence.
  • “After + 时间段 + of + 动作,I have + 成果. I have + 动作 + 具体内容.”(描述学习经历及收获)
    例:After three years of study, I have a solid foundation in the field of artificial intelligence. I have learned knowledge about deep learning, natural language processing and computer vision.
  • “In + 时间段,I have + 动作 + 具体成果. I have also + 动作 + 其他成果,such as + 具体示例.”(列举学术和竞赛经历,“also” 增强并列逻辑,“such as” 明确引出举例,使表述更连贯)
    例:In these three years, I have participated in publishing 1 SCI paper and 1 conference paper. I have also taken part in many competitions related to artificial intelligence and robotics, and won 9 national awards, such as the first prize in the China Robotics and Artificial Intelligence Competition.
  • “For example, in + 活动名称,I used + 工具 / 技术 + to + 动作. I used + 其他技术 + to + 动作.”(具体举例说明实践经历,“used...to...” 清晰体现工具与动作的关联)
    例:For example, in the China Software Cup, I used ROS to control the Unitree robot dog. I used technologies like PPO reinforcement learning, object detection and Baidu Wenxin large model to complete tasks.
  • “At + 活动 / 场合,I developed + 成果 + to + 目的,and + 结果.”(描述特定场合下的成果与产出,“developed...to...” 体现成果的开发目的,“and” 连接结果,逻辑更完整)
    例:At a workshop of NAACL, I developed a BERT+LSTM+CRF model to address the international evaluation task of ancient Chinese named entity recognition, and the results were accepted for an Oral presentation.
  • “have/has + 过去分词”(体现过去的研究、竞赛经历对现在的影响(拥有知识和经验),是英语中表达 “积累成果” 的基础语法)
    例:"I have a solid foundation in AI"(“我在人工智能领域有扎实的基础”):强调过去三年学习后,现在具备的能力;"I have participated in publishing 1 SCI paper"(“我参与发表了 1 篇 SCI 论文”):体现过去的学术经历,成果持续到现在。
  • “not only... but also...”(连接两个并列的成分,表示 “不仅…… 而且……” 的递进关系,可用于强化经历带来的双重收获)
    例:These experiences have not only deepened my understanding of AI but also boosted my practical engineering skills.
  • “Thank you for + 名词.”(表达感谢,明确感谢的具体对象)
    例:Thank you for your time and attention!

単語

单词 音标 中文释义
teacher /ˈtiːtʃər/ 教师
everyone /ˈevriwʌn/ 每个人
honor /ˈɑːnər/ 荣幸(honored为其过去分词/形容词形式,表“感到荣幸的”)
introduce /ˌɪntrəˈdjuːs/ 介绍(动词,搭配“introduce oneself”表“自我介绍”)
myself /maɪˈself/ 我自己(反身代词,用于指代主语自身)
here /hɪr/ 在这里(地点副词,指代当前场合)
from /frəm/ 来自(介词,搭配“be from”表“来自某地/某机构”)
major /ˈmeɪdʒər/(名词); /ˈmeɪdʒər/(动词) 专业(名词);主修(动词,“major in”表“主修某专业”)
artificial /ˌɑːrtɪˈfɪʃl/ 人工的(形容词,搭配“artificial intelligence”表“人工智能”)
intelligence /ɪnˈtelɪdʒəns/ 智力;智能(名词,核心含义为“认知、理解能力”)
after /ˈæftər/(介词); /ˈæftər/(副词) 在……之后(介词,后接时间/事件;副词,表“随后”)
year /jɪr/ 年(名词,“years”为复数形式,表“多年”)
study /ˈstʌdi/(名词); /ˈstʌdi/(动词) 学习;研究(名词,指学习过程/领域;动词,表“学习、钻研”)
have /hæv/ 有;已经(动词,表“拥有”;助动词,构成现在完成时)
solid /ˈsɑːlɪd/ 坚实的(形容词,修饰抽象概念如“foundation”“basis”,表“稳固的”)
foundation /faʊnˈdeɪʃn/ 基础(名词,搭配“solid foundation”表“扎实的基础”)
field /fiːld/ 领域(名词,指学术、职业等特定范围,如“field of AI”)
learn /lɜːrn/ 学习(动词,“learned”为过去分词,构成现在完成时)
knowledge /ˈnɑːlɪdʒ/ 知识(不可数名词,指通过学习获得的认知)
about /əˈbaʊt/ 关于(介词,后接具体内容,表“涉及的领域”)
deep learning /diːp ˈlɜːrnɪŋ/ 深度学习(固定术语,指人工智能中的机器学习分支)
natural language processing /ˈnætʃrəl ˈlæŋɡwɪdʒ ˈprɑːsesɪŋ/ 自然语言处理(固定术语,简称NLP,处理人类语言的AI技术)
computer vision /kəmˈpjuːtər ˈvɪʒn/ 计算机视觉(固定术语,简称CV,让计算机“看懂”图像的技术)
participate /pɑːrˈtɪsɪpeɪt/ 参加(动词,“participated”为过去分词,搭配“participate in”表“参与某事”)
publishing /ˈpʌblɪʃɪŋ/ 出版;发表(动名词,“publish”为动词原形,表“发表论文/著作”)
SCI /ˌes siː ˈaɪ/ 科学引文索引(固定缩写,全称为Science Citation Index,国际知名学术索引)
paper /ˈpeɪpər/ 论文(名词,指学术领域的研究文章,如“SCI paper”“conference paper”)
conference /ˈkɑːnfərəns/ 会议(名词,“conference paper”指“会议论文”,区别于期刊论文)
also /ˈɔːlsoʊ/ 也(副词,用于补充说明,表“除此之外还有”)
take part in /teɪk pɑːrt ɪn/ 参加(固定短语,与“participate in”同义,后接活动/事件)
competition /ˌkɑːmpəˈtɪʃn/ 比赛;竞赛(名词,指竞技类活动,如“AI competition”)
robotics /roʊˈbɑːtɪks/ 机器人技术(名词,指研究机器人设计、控制的学科)
win /wɪn/ 赢得(动词,“won”为过去分词,搭配“win awards”表“获奖”)
national /ˈnæʃnəl/ 国家的(形容词,修饰“awards”“competitions”,表“国家级的”)
award /əˈwɔːrd/ 奖项(名词,“awards”为复数形式,指各类荣誉奖项)
such as /sʌtʃ æz/ 例如(固定短语,用于引出具体例子,后接名词/名词短语)
first prize /fɜːrst praɪz/ 一等奖(固定短语,指竞赛中的最高奖项)
China Robotics and Artificial Intelligence Competition /ˈtʃaɪnə roʊˈbɑːtɪks ænd ˌɑːrtɪˈfɪʃl ɪnˈtelɪdʒəns ˌkɑːmpəˈtɪʃn/ 中国机器人及人工智能大赛(固定赛事名称,需大写首字母)
China Software Cup /ˈtʃaɪnə ˈsɔːftwer kʌp/ 中国软件杯(固定赛事名称,需大写首字母)
ROS (Robot Operating System) /ˌɑːr oʊ ˈes/ 机器人操作系统(固定缩写,用于机器人开发的开源系统)
control /kənˈtroʊl/ 操控;控制(动词,表“对设备进行操作管理”)
Unitree /ˈjuːnɪtriː/ 宇树科技(公司名称,专注于四足机器人研发,需大写首字母)
robot dog /ˈroʊbɑːt dɔːɡ/ 机器狗(名词短语,指外形、动作类似狗的机器人)
PPO (Proximal Policy Optimization) /ˌpiː piː ˈoʊ/ 近邻策略优化(固定缩写,强化学习中的一种算法)
reinforcement learning /ˌriːɪnˈfɔːrsmənt ˈlɜːrnɪŋ/ 强化学习(固定术语,机器学习的分支,通过“奖励”优化策略)
object detection /ˈɑːbdʒekt dɪˈtekʃn/ 目标检测(固定术语,计算机视觉技术,用于识别图像中的目标)
Baidu Wenxin large model /ˌbaɪˈduː ˈwenˈʃɪn lɑːrdʒ ˈmɑːdl/ 百度文心大模型(固定名称,百度研发的生成式AI模型,需大写首字母)
complete /kəmˈpliːt/ 完成(动词,搭配“complete tasks”表“完成任务”)
task /tæsk/ 任务(名词,指需要完成的具体工作)
NAACL (North American Chapter of the Association for Computational Linguistics) /ˌen eɪ ˌeɪ ˈsiː ˈel/ 北美计算语言学会(固定缩写,国际知名语言学学术组织,需大写首字母)
workshop /ˈwɜːrkʃɑːp/ 研讨会(名词,指小型学术讨论会议,区别于大型conference)
develop /dɪˈveləp/ 开发;研发(动词,表“设计、创建新事物”,如“develop a model”)
model /ˈmɑːdl/ 模型(名词,指AI领域的算法模型,如“BERT model”“CRF model”)
address /əˈdres/ 应对;解决(动词,表“处理问题、任务”,正式用语)
ancient Chinese /ˈeɪnʃənt ˌtʃaɪˈniːz/ 古汉语(名词短语,指古代中国的语言文字)
named entity recognition /neɪmd ˈentəti ˌrekəɡˈnɪʃn/ 命名实体识别(固定术语,简称NER,自然语言处理任务,识别文本中的人名、地名等)
international evaluation task /ˌɪntərˈnæʃnəl ɪˌvæljuˈeɪʃn tæsk/ 国际评测任务(名词短语,指跨国界的学术评估任务)
result /rɪˈzʌlt/ 成果;结果(名词,“results”为复数形式,指研究、比赛的产出)
accept /əkˈsept/ 录用;接受(动词,“accepted”为过去分词,表“被认可、采纳”)
Oral presentation /ˈɔːrəl ˌprezənˈteɪʃn/ 口头报告(名词短语,指学术会议中现场口头汇报成果的形式,需大写首字母)
deepen /ˈdiːpən/ 加深;深化(动词,表“使程度增加”,如“deepen understanding”)
understanding /ˌʌndərˈstændɪŋ/ 理解(名词,指对事物的认知程度)
boost /buːst/ 提升;增强(动词,表“提高能力、水平”,如“boost skills”)
practical engineering skills /ˈpræktɪkl ˌendʒɪˈnɪrɪŋ skɪlz/ 工程实践能力(名词短语,指将理论用于实际工程的能力)
safely /ˈseɪfli/ 安全地(副词,修饰动词“assist”,表“无风险地”)
assist /əˈsɪst/ 帮助;协助(动词,表“为他人提供支持”)
thank /θæŋk/ 感谢(动词/名词,动词搭配“thank sb.”,名词如“a thank you”)
time /taɪm/ 时间(名词,“your time”表“您的时间”,礼貌用语)
attention /əˈtenʃn/ 注意力;关注(名词,“your attention”表“您的关注”,礼貌用语)

中文自我介绍(早期版本)

各位老师好!很荣幸能够参加今天的面试!

我是XXX,来自XXX大学XXX学院人工智能专业,希望能念XXX软件工程的硕士。

本科期间,我系统学习了人工智能的专业知识,在深度学习、强化学习及多模态处理等领域积累了一定基础。目前我平均加权成绩在专业39人中排名第5,预估综合排名专业第4,可以获得保研资格。

在竞赛方面,我参与多项国家级竞赛,并累计获国家级奖项9项,包括中国机器人及人工智能大赛一等奖、中国大学生计算机设计大赛二等奖等。在中国软件杯中,我作为队长,使用ROS2操控宇树科技的机器狗,融合使用PPO强化学习、目标检测等算法完成规定的任务,最终在272支报名队伍中排名第12。

科研实践方面,我参与过一个国际评测和一篇机器视觉方向的SCI-4区论文。在NAACL 2025,EvaHan2025国际评测中,我负责古汉语命名实体识别任务的核心代码和实验设计,使用BERT+LSTM+CRF的模型架构,和前期冻结预训练模型参数+末期全局微调的训练策略,显著缓解过拟合。模型在《史记》、《二十四史》、《中医药典籍》三个数据集上显著超越官方baseline,成果获Oral报告录用。通过参与竞赛和科研工作,我的代码能力和创新能力有较大提升,我也坚信这对将来在XXX的科研工作带来帮助。

我的介绍到此结束,感谢各位老师的倾听。

質問

没听清/回答不出来

  • Sorry, teacher, Can you repeat it again.
  • Sorry, teacher, this question is too hard for me.

个人优点

What are your great strengths?
Can you describe your qualities?
What kind of person are you?
Which bright spot do you think that makes you stand out?
What are your advantages over other campers?
Obviously, you are quite excellent and competitive ,but why do you think you are the person that we are finding?

  • I think I’m a hardworking and responsible student. No matter how hard it is, I can keep going.

个人缺点

What are your weaknesses?
What are your weak points?
What is your shortcoming?
What do you think you should improve?

  • My main weakness is not exercising enough. In the future, I plan to spend more time on sports.

你的性格是怎样的?

What is your personality like?

  • I think I’m a hardworking and responsible student. No matter how hard it is, I can keep going.

你的业余爱好是什么?

What are your hobbies?
Do you have any hobbies that you are proud of?
What's your favorite hobby?
Describe one of your hobbies.
Can you describe one of your favorite movies?
Can you describe one of your favorite books?
What are your spare time interests?

  • My favorite hobby is building and learning about computer parts. I often look up info on different computer parts and compare how well they work.

你的家乡是什么样的?请介绍一下你的家乡

What is your hometown like? Please introduce your hometown.
Where are you from?
Can you tell me something about your hometown?
Tell something about your hometown?
Is there something famous in your hometown?
Would you like to tell some stories about your hometown?

  • My hometown is Guangxi Guiping. It's where the Taiping Rebellion began.Guiping is still a bit poor, but it's changing fast.I love my hometown, and I can feel it getting better.

对学校的介绍

Please introduce the relevant information about undergraduate - level colleges and universities.
Please introduce the college life.
Could you please talk about your university?

  • I am from XXX University, and I majored in artificial intelligence.XXX University is strong in forestry. But its basic computer classes are also very good. My university cares about theory and practice. I have also taken part in many projects related to AI. These experiences helped me understand AI better.

你最喜欢的大学课程是什么?

What is your favorite college course?
What is your favorite subject and why?
A class that impressed you most?
Which specialized course did you like best?
Which courses do you learn in this semester? What do you learn in xxx courses?
Which subject is the most useful?

  • My favorite undergrad course was Deep Learning. In this course, I learned about neural networks like CNN and RNN, and reinforcement learning methods like PPO and DQN. This course helped me a lot.

你最喜欢的大学老师是谁?

Who is your favorite college teacher?

你最喜欢的一本书是什么?

What is your favorite book?
What is your favorite book and why?
What professional books have you read before?

  • My favorite book is Nineteen Eighty-Four. It’s a powerful, eye-opening read that helped me see things differently.

你为什么想读研?

Why do you want to pursue a postgraduate degree?
Why are you going to get a Master Degree?
Why do you want to go to graduate school instead of working?

  • I think AI is a very useful technology. It helps people a lot in daily life. For example, chatbots like ChatGPT, and AI translation apps.I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.

你为什么选择XX大学?

Why did you choose XX University?
Why do you choose our school/institute?
Are you considering other programs? If faced with multiple options, how will you choose?

  • XXX is strong in AI. I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.

你为什么选择XX学院?

Why do you choose the XX Academy?

  • XXX is strong in AI. I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.

你在读研期间有什么安排或计划?

What are your arrangements or plans during your postgraduate studies?

  • I think AI is a very useful technology. It helps people a lot in daily life. For example, chatbots like ChatGPT, and AI translation apps.I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.

你毕业后有什么规划?

What are your plans after graduation?

  • After graduation, I plan to do AI related work. I believe hard work can help AI safely assist more people.

对AI的看法

  • I think AI is a very useful technology. It helps people a lot in daily life. For example, chatbots like ChatGPT, and AI translation apps.
    But AI has some problems too. First, it needs lots of good data to work well. Sometimes, it can’t explain why it makes a certain decision. Also, we need to make sure AI helps people and won’t hurt them.
    I want to study AI because I hope to make it better. And I believe hard work can help AI safely assist more people.
    Thank you.

我认为人工智能是一项非常有用的技术。它在日常生活中帮助人们很多。例如,像ChatGPT这样的聊天机器人,以及人工智能翻译应用程序。
但人工智能也存在一些问题。首先,它需要大量优质的数据才能正常工作。有时,它无法解释为何会做出某个决定。此外,我们需要确保人工智能是公平的,不会伤害人们。
我想学习人工智能,因为我希望找到改进它的方法。我相信,努力工作可以帮助人工智能更安全地帮助更多人。
谢谢。

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentation

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions