Skip to content

Instantly share code, notes, and snippets.

@priyanlc
Created July 3, 2020 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save priyanlc/422d8749c3023b570434378501b0f7a0 to your computer and use it in GitHub Desktop.
Save priyanlc/422d8749c3023b570434378501b0f7a0 to your computer and use it in GitHub Desktop.
input_data = {"_train_sample":'/dbfs/mnt/blogs_pl/taxi_fare_feature_eng_train_sample6', "_validate_sample":'/dbfs/mnt/blogs_pl/taxi_fare_feature_eng_validate_sample6',"_test_sample":'/dbfs/mnt/blogs_pl/taxi_fare_feature_eng_test_sample6'}
activation_function = ['relu', 'tanh', 'sigmoid']
for n in range (3):
learning_rate = n+1/1000
batch_size = 512 * (n+1)
for act in activation_function:
input_params = { "_learning_rate":learning_rate, "_steps":100000, "_batch_size":batch_size, "_dataset_size":4000000,\
"_model_dir":'/dbfs/tmp/models', "_activation_function":act,\
"_checkpoints_steps":5000,"_output_path":'/dbfs/mnt/blogs_pl/output1'}
nyt= NYorkTaxiFairPrediction.new_instance(input_params,input_data)
(experimentID, runID) = nyt.mlflow_run(NYorkTaxiFairPrediction.random_key(10))
print("MLflow Run for NYorkTaxiFairPrediction completed with run_id {} and experiment_id {}".format(runID, experimentID))
print("-" * 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment