Skip to content

Instantly share code, notes, and snippets.

@kudkudak
Created August 11, 2015 21:38
Show Gist options
  • Select an option

  • Save kudkudak/2e8ef96e459861772b59 to your computer and use it in GitHub Desktop.

Select an option

Save kudkudak/2e8ef96e459861772b59 to your computer and use it in GitHub Desktop.
import sys
sys.path.append("/home/ubuntu/hackathon_bes")
from utils import *
from run_nn import *
data = get_data("christine")
fit_predict(data["X_train"], data["Y_train"], test_datasets = [data["X_test"], data["X_valid"]],
learning_rate=0.01, L1_reg=0.00, L2_reg=0.000001, n_epochs=200, batch_size = 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment