Skip to content

Commit 9190311

Browse files
committedMay 6, 2019
Allowed uno benchmark to use a default params file variable within the model
1 parent 64b1fee commit 9190311

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.pyc
22
__pycache__/
3+
Data

‎Pilot1/Uno/uno_baseline_keras2.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ def build_model(loader, args, permanent_dropout=True, silent=False):
279279
def initialize_parameters():
280280

281281
# Build benchmark object
282-
unoBmk = benchmark.BenchmarkUno(benchmark.file_path, 'uno_default_model.txt', 'keras',
282+
#mymodel_common = candle.Benchmark(file_path,os.getenv("DEFAULT_PARAMS_FILE"),'keras',prog='myprog',desc='My model')
283+
unoBmk = benchmark.BenchmarkUno(benchmark.file_path, os.getenv("DEFAULT_PARAMS_FILE"), 'keras',
283284
prog='uno_baseline', desc='Build neural network based models to predict tumor response to single and paired drugs.')
284285

285286
# Initialize parameters

0 commit comments

Comments
 (0)
Please sign in to comment.