I am making a 2048 game, but the problem is that when I click Cash Out, the 2048 tiles covers the modal, but instead, it should cover the whole thing, like the modal's background should cover the game so you can cash out. Since I have a ton of code of Javascript, CSS, and HTML, you can locate my code here, and I don't know why it does that. Me and my friend have tried finding the source of the issue everywhere, but we couldn't find anything. Can you guys help?
Via Active questions tagged javascript - Stack Overflow https://ift.tt/jRP1owJ
So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...
Comments
Post a Comment