Skip to content

Commit

Permalink
Added a realistic example
Browse files Browse the repository at this point in the history
  • Loading branch information
duvenaud committed Apr 3, 2013
1 parent f29549f commit e148935
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
13 changes: 13 additions & 0 deletions examples/realistic_example.py
@@ -0,0 +1,13 @@
# An example experiment that will take a while, but will probably find a good solution.

Experiment(description='An example experiment',
data_dir='../data/1d_data/01-airline.mat',
results_dir='../examples/',
max_depth=10, # How deep to run the search.
k=1, # Keep the k best kernels at every iteration. 1 => greedy search.
n_rand=2, # Number of random restarts.
iters=100, # How long to optimize hyperparameters for.
base_kernels='SE,Per,Lin',
verbose=False,
make_predictions=False,
skip_complete=True)
12 changes: 1 addition & 11 deletions source/config.py
@@ -1,14 +1,4 @@


#MATLAB_LOCATION = "/misc/apps/matlab/matlabR2011b/bin/matlab"
MATLAB_LOCATION = "matlab"
#GPML_PATH = '/home/dkd23/fear_gpml/'
GPML_PATH = 'gpml/'
COLOR_SCHEME = 'dark'
USERNAME = 'dkd23'
#LOCATION = 'local'
REMOTE_GPML_PATH = '/home/mlg/dkd23/fear_gpml/'
RESULTS_PATH = '/scratch/gpss_raw_results'
LOCAL_TEMP_PATH = '/home/dkd23/git/gp-structure-search/temp'
REMOTE_TEMP_PATH = '/users/dkd23/temp'
D1_RESULTS_PATH = '/scratch/Dropbox/results/8-Feb 1d-scaled-definitive/'

0 comments on commit e148935

Please sign in to comment.