I have a project idea that would utilize a virtual credit card. The idea is that I would have a centralized fund (bank account) that can be linked up to "disposable credit card numbers". For example if someone was authorized to make a purchase for $10, an api call would be made to generate a temporary credit card number that has a maximum limit of their purchase amount ($10). Once the purchase of $10 is made the card number should be no longer valid. And this would happen on a rinse and repeat basis where on call temp card details are generated for a user and then disposed of when the purchase is made. However, I have not a clue where to start. Does anyone know of such services that offer VCC?
Via Active questions tagged javascript - Stack Overflow https://ift.tt/BpEImlW
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