Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.11 KB | None | 0 0
  1. # osprey configuration file.
  2. #---------------------------
  3. # usage:
  4. #  osprey worker config.yaml
  5.  
  6. estimator:
  7.    # The model/estimator to be fit.
  8.     eval: |
  9.        Pipeline([
  10.                 ('tica', tICA()),
  11.                 ('cluster', MiniBatchKMeans()),
  12.                 ('msm', MarkovStateModel(lag_time=100, n_timescales=5, verbose=True)),
  13.         ])
  14.  
  15.     # for eval, a python package containing the estimator definitions
  16.     eval_scope: msmbuilder
  17.  
  18.  
  19. strategy:
  20.     name: random
  21.  
  22. search_space:
  23.   cluster__n_clusters:
  24.     min: 50
  25.     max: 5000
  26.     type: int
  27.  
  28.   tica__lag_time:
  29.     min: 1
  30.     max: 200
  31.     type: int
  32.  
  33.   tica__commute_mapping:
  34.     choices:
  35.      - True
  36.       - False
  37.     type: enum
  38.  
  39.   tica__n_components:
  40.     min: 1
  41.     max: 20
  42.     type: int
  43.  
  44.  
  45. cv:
  46.   name: shufflesplit
  47.   params:
  48.     n_splits: 5
  49.     test_size: 0.4
  50.  
  51. dataset_loader:
  52.  # specification of the dataset on which to train the models.
  53.   name: numpy
  54.   params:
  55.     filenames: /work/je714/cross-validations/ef-hand/sctrajs/*
  56.  
  57.  
  58. trials:
  59.   uri: sqlite:////work/je714/cross-validations/ef-hand/osprey-trials.db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement