Interview of ING internship for master thesis: LLM

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


Interview of ING internship for master thesis: LLM


1. Background

Project Overview: Experimental LLM for REF Use

The project involves developing a chatbot/agent based on a pre-trained LLM, which will be fine-tuned using Real Estate Finance (REF) data and public data to make it specialized for our use. The model will be capable of answering questions and providing information related to our clients, assets, tenants, and other general real estate finance topics.

Purpose of the Project

Enhanced Business Interaction: Improve REF colleague interaction by providing instant, accurate responses to their queries.
Efficient Information Retrieval: Enable quick and efficient retrieval of information related to assets and tenants.
Innovation: Explore innovative technological solutions that can be potentially integrated into our operations.

Roles and Responsibilities of the Intern

Model Development: Assist in doing research and developing and fine-tuning the LLM to cater to REF-specific use cases.
Data Management: Manage and organize data used for training and fine-tuning the model.
Testing and Evaluation: Conduct testing and evaluation of the model to ensure its accuracy and reliability.
Documentation: Maintain thorough documentation of the development process, challenges, and solutions implemented.


Qualifications for the Intern Position: Development of a Large Language Model Application

  1. Educational Background:
    Currently enrolled in a Master’s program, preferably in Computer Science, Data Science, Artificial Intelligence, or a related field.
    Working on a Master’s thesis that aligns with the development and application of Large Language Models, with a focus on real estate finance or a relevant domain.

  2. Technical Proficiency:
    Strong programming skills, particularly in Python, and familiarity with machine learning libraries and frameworks such as TensorFlow or PyTorch.
    Experience or coursework in Natural Language Processing (NLP) and chatbot development.

  3. Research Skills:
    Ability to conduct comprehensive research on LLM applications and integrate findings into practical use-cases.
    Demonstrated capability to work on a research project, as evidenced by their Master’s thesis.

  4. Collaboration and Problem-Solving:
    Ability to adapt to challenges and pivot strategies as needed throughout the project development.
    Strong problem-solving skills and the ability to troubleshoot issues that may arise during the model development.
    Ability to work collaboratively with our internal team, providing updates and integrating feedback into the project.
    Willingness to engage with academic and professional mentors for guidance and support throughout the project.


2. Interview

2.1 Intro

  1. 2 intro of the 2 interviewers
    senior data 5-7 years experience
  2. intro of the project
  3. self intro

2.2 project experience

  1. word2vec and CAPTCHA, 2 interesting project, talk about them

  2. word2vec 原理,调参具体是什么?学习率是什么?如何评价一个模型?

  3. 什么是过拟合,怎么避免?

    • 过拟合
    • 在统计学中,过拟合(英语:overfitting,或称拟合过度)是指过于紧密或精确地匹配特定数据集,以致于无法良好地拟合其他数据或预测未来的观察结果的现象。[1]过拟合模型指的是相较有限的数据而言,参数过多或者结构过于复杂的统计模型。[2]发生过拟合时,模型的偏差小而方差大。过拟合的本质是训练算法从统计噪声中不自觉获取了信息并表达在了模型结构的参数当中。[3]:45相较用于训练的数据总量来说,一个模型只要结构足够复杂或参数足够多,就总是可以完美地适应数据的。过拟合一般可以视为违反奥卡姆剃刀原则。
      与过拟合相对应的概念是欠拟合(英语:underfitting,或称:拟合不足);它是指相较于数据而言,模型参数过少或者模型结构过于简单,以至于无法捕捉到数据中的规律的现象。发生欠拟合时,模型的偏差大而方差小。
  4. 什么是类不平衡?怎么解决?
    类不平衡讲解

    • 解决:
      • 欠采样
      • 过采样
    • 欠采样就是把比较多的一类少采集一点,核心问题是怎么防止因为忽略了一些样本导致的信息缺失。Tomek Links Tomek Links指的是,数据集中的两个样本彼此是对方的最近邻,同时他们的类别不同。这时候我们可以删除两个点中,属于样本较多的那一类的那个点,这样能一定程度上减轻两类数据的不平衡。Tomek Links的想法其实是,如果两个样本是Tomek Links的,那么分类器处理这两个样本的时候一定不太容易,那干脆删除一个减轻压力。不过这个方法比较危险,毕竟这样很可能导致信息缺失。
  5. 随机森林是什么?和决策树有什么区别?优点是什么?随机森林如何实现分类?

    • 随机森林是用于分类和回归的一种主流集成学习方法。 集成学习方法结合了多种机器学习(ML) 算法,以获得更好的模型– 应用于数据科学的群体智慧。 此类学习方法基于这样一种概念:一群对问题领域知之有限的人集思广益,可以获得比一个知识丰富的人更好的解决方案。 随机森林是一组决策树,是几乎人人都熟悉的解决问题的比喻。
      随机森林
    • 随机森林的优点
      • 对于很多种资料,它可以产生高准确度的分类器。
      • 它可以处理大量的输入变量。
      • 它可以在决定类别时,评估变量的重要性。
      • 在建造森林时,它可以在内部对于一般化后的误差产生不偏差的估计。
      • 它包含一个好方法可以估计丢失的资料,并且,如果有很大一部分的资料丢失,仍可以维持准确度。
      • 它提供一个实验方法,可以去侦测variable interactions。
      • 对于不平衡的分类资料集来说,它可以平衡误差。
      • 它计算各例中的亲近度,对于数据挖掘、侦测离群点(outlier)和将资料可视化非常有用。
      • 使用上述。它可被延伸应用在未标记的资料上,这类资料通常是使用非监督式聚类。也可侦测偏离者和观看资料。
      • 学习过程是很快速的。
        随机森林讲解
    • 优点
      • 它可以出来很高维度(特征很多)的数据,并且不用降维,无需做特征选择
      • 它可以判断特征的重要程度
      • 可以判断出不同特征之间的相互影响
      • 不容易过拟合
      • 训练速度比较快,容易做成并行方法
      • 实现起来比较简单
      • 对于不平衡的数据集来说,它可以平衡误差。
      • 如果有很大一部分的特征遗失,仍可以维持准确度。
        随机森林讲解

2.3 问题

  1. 最快何时开始?期望11月
  2. 课程多吗?不多,重心在项目
  3. 论文有要求吗?根据公司项目需求
  4. 学校有导师指导吗?做LLM方向的
  5. 后面会有一个python测试,下周三进行,选拔用,测试学习能力,补全代码

2.4 Q&A

  1. 部门介绍
    200+,具体data人不多
  2. 地址
    bijlmer arena
  3. 项目要求

总结

技术答得有点烂,还是得好好准备一下自己简历的项目。准备做下一轮的python吧。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值