-
Notifications
You must be signed in to change notification settings - Fork 1
/
autocurator_config.m
29 lines (26 loc) · 1.45 KB
/
autocurator_config.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
% DYNAMIC SETTINGS
function [settings] = autocurator_config()
% Google Cloud Platform settings
% Defaults
settings.folder = 'C:\SuperUser\Documents\GitHub\whisker-autocurator\Autocurator_Beta';
settings.behavTrialOffset = 0;
% Version number is for CloudML, 1.8 seems to work fine
settings.runVer = 1.8;
% Model code gives location of python code that is actually uploaded to the cloud
settings.modCode = 'trainer.cnn_curator_cloud';
% The location of your model code on the local drive
settings.modCodePath = '\Autocurator_Beta\trainer';
% Path where the code you are currently running is
settings.autocuratorPath = 'C:\Users\shires\Documents\GitHub\whisker_autocurator_labversion';
% Data center in which to process data. us-west1 (Oregon) is closest but
settings.region = 'us-east1';
% Location of .yaml file used by Google Cloud for configuration settigns
settings.configFile = 'C:\Users\shires\Documents\GitHub\whisker_autocurator_labversion\Autocurator_Beta\trainer\cloudml-gpu.yaml';
% Model Path lists the location on the cloud where the training model is
% stored including the model name
settings.modelPath = 'gs://whisker-autocurator-data/Models/rotated_model_29.h5';%Adjusted_Curation_7.h5';
% Place to save uncurated datasets
settings.saveDir = 'C:\Users\shires\Documents\2019_Autocurator\Datasets';
% Place to save curated datasets
settings.newSaveDir = 'C:\Users\shires\Documents\2019_Autocurator\Curated_Datasets';
end