Sobes.tech

Machine Learning / AI

What do you mean by an error (in the prompt approach)?

Middle+
СОГАЗ
25

Why is normalization (Layer Norm) needed — why stabilize training?

Senior
X5 techX5 tech
25

How were load peaks handled in the RAG system? What happened under high load?

Middle+
мок мгу
25

How was the quality of the Text-to-SQL agent evaluated?

Middle+
мок мгу
25

An agent never invokes one of the three tools. How to investigate and solve this problem?

Senior
ozon_tech
25

What loss function did you use when fine-tuning the embedder?

Senior
X5 techX5 tech
25

What rank did you set for LoRA and what does it depend on?

Middle+
AiUP
25

What was actually more difficult than initially expected?

Senior
Фарпост ИТ
25

How to sort 20 chunks and select the top 5 most relevant for passing to LLM?

Middle+
Сбербанк
25

What are items? How is it correctly pronounced?

Senior
iviivi
25

Can you tell us in more detail what exactly seemed 'stifling' to you in the questions and how it affected your perception of the interview?

Senior
ylab
25

How was the quality of generation evaluated (not retrieval)?

Middle+
СОГАЗ
25

Tell about the forecasting task from your resume — what is the model built on and what was the prediction for?

Middle
WildberriesWildberries
25

Are you familiar with GigaChat? Do you have experience working with it?

Senior
Сбербанк
25

Tell us about yourself and your experience as a systems analyst

Middle
моэк
25

What is linear regression and what are the options for its solution?

Senior
X5 techX5 tech
25

Was the toolcalling native or through prompt (parsing)?

Middle+
СОГАЗ
25

What is dropout and how does it work during training and inference?

Middle
AstonAston
25

Which companies are you currently at some stage with?

Senior
Group-IB
25

-- # -- Marketers launch promo campaigns in the app. There are two tables: -- # -- campaigns - list of campaigns -- # -- - campaign - campaign name -- # -- - action_type - campaign type: "push" or "banner" -- # -- communications - backend log of sending communications of these campaigns to users -- # -- - user_id - user identifier -- # -- - campaign - campaign name -- # -- - status - event status: "success" or "error" -- ------------------------------------------------------------------------------------------------------------------------ -- # -- 1. Initially, the campaigns table has 4 rows: -- # -- | campaign | action_type | -- # -- |-------------|-------------| -- # -- | promo_dogs | push | -- # -- | promo_cats | banner | <- randomly duplicated -- # -- | promo_cats | banner | <- two rows -- # -- | promo_rats | push | # # -- Also known that: -- # -- campaigns promo_dogs and promo_cats were successfully conducted on 100 users each, and each user received one communication, -- # -- while promo_rats is only planned. -- # -- 1.1 What will the query output: SELECT campaign, COUNT(*) as rows, COUNT(DISTINCT co.user_id) AS users FROM campaigns AS ca INNER JOIN communications AS co ON ca.campaign = co.campaign GROUP BY ca.campaign AS campaign -- # -- 1.2 How will the answer change if you change the JOIN type to LEFT? -- # -- 1.3 List the order of execution of the operators in this query. -- Answer: promo_dogs ... ...

Senior
Яндекс
25
/177