Sobes.tech

Machine Learning / AI

a = [1, 2, 3] b = [1, 2, 3] c = a print(a == b) print(a is b) print(a is c) class A: def __init__(self): print("A init") class B(A): def __init__(self): print("B init") super().__init__() class C(A): def __init__(self): print("C init") super().__init__() class D(B, C): def __init__(self): print("D init") super().__init__() d = D()

163

a = [1, 2, 3] b = [1, 2, 3] c = a print(a == b) print(a is b) print(a is c)

159

What is the difference between an error function and error functionality?

159

Calculate the total revenue for each user. Find their first and last purchase dates. Add a new column prev_revenue to the dataframe, which contains the revenue of the previous purchase of the same user (shift within the group). If there is no previous, set NaN.

157

What model was obtained in the churn project, how many features were there, and what was the sample size?

155

How to accelerate gradient descent with a very large number of features?

152

What is L1- and L2-regularization and why can L1 zero out weights?

151

Do you have any questions about the project and the work format?

149

Tell me about a regression project for predicting the market value of real estate and the model used.

139
/3