How is a random forest structured and what are its advantages and disadvantages?
Machine Learning / AI
There is data with different time granularities: some are recorded hourly, some daily. What to do with this?
What are Delta Lake / Iceberg / Hudi and why lakehouse?
What was the final sample size and how many initial and selected features were in the project?
Tell us more about your end-to-end experience: what stages did you perform from task setting to deploying the model in production?
What is doubly robust estimation?.
What is over-squashing in GNN?
What examples of feature engineering have you performed in projects?
Why are shallow trees usually used in boosting, and how does the number of trees affect overfitting?
Calculate the total revenue for each user Find the first and last purchase date for each user.
How can the error functionality be modified?
What is NGBoost and probabilistic predictions?
What is holdout users and why keep constant control?
import pandas as pd import numpy as np data = { 'user_id': [1, 1, 1, 2, 2, 3, 3, 3, 4], 'date': ['[phone]', '[phone]', '[phone]', '[phone]', '[phone]', '[phone]', '[phone]', '[phone]', '[phone]'], 'revenue': [100, 200, 150, 300, 250, 100, 100, 100, 400] } df = pd.DataFrame(data) df['date'] = pd.to_datetime(df['date']) Calculate the total revenue for each user.
What is a model inversion attack?