I had a two-hour interview consisting of two rounds. In the ML Coding round, I was asked to implement text summarization using the BERT API. The input is a text (e.g., an IMDB movie review), and the output is a segment of the text (which may or may not be a co...
The HM screen was straightforward, involving introductions and high-level questions without delving too deeply into technical details. I spent a day preparing by reviewing the latest developments related to the content on my resume and anticipating potential q...
The question involved implementing a class to manage layers, where each layer has an ID and a set of properties (key-value pairs). I needed to implement `init`, `apply`, and `undo` functions. For example: ``` apply(Layer(1, {"color": "green"})) apply(Layer(2,...