Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # starting time
  2. start = time.time()
  3. # fit the grid on train dataset:
  4. grid_logreg.fit(X_train,y_train);
  5. # ending time and print the running time:
  6. end = time.time()
  7. print('Analysis Terminated, running time:. {:.2f} minutes'.format((end - start)/60))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement