Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # Define the name of the target class column here instead of manually typing it out everywhere
  2. target_class_name = 'Churn'
  3.  
  4. # Fill in the names of what you want to call the 0 and 1 class
  5. labels = ['No', 'Yes']
  6.  
  7. input_file_name = 'WA_Fn-UseC_-Telco-Customer-Churn.csv'
  8.  
  9. intermediate_data_path = 'intermediate data/'
  10.  
  11. output_df_file_name = 'week1_cleaned_df_output_'
  12.  
  13. # Enter the date in which this notebook is run
  14. export_date = '20190925'
  15.  
  16. # Check ou tthe names of the files in the input folder that we need to load as dataframe
  17. import os
  18. print(os.listdir('input'))
  19. # This will list all the files in this folder
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement