Skip to content

Commit fa4b5c0

Browse files
committed
deprecated affinity inference
1 parent 3cf6fbf commit fa4b5c0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

deepem/test/cv_utils.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,6 @@ def ingest(data, opt, tag=None):
111111
from igneous.task_creation import create_downsampling_tasks
112112

113113
with LocalTaskQueue(parallel=opt.parallel) as tq:
114-
create_downsampling_tasks(tq, gs_path, mip=0,
115-
fill_missing=True)
114+
# create_downsampling_tasks(tq, gs_path, mip=0, fill_missing=True)
115+
tasks = create_downsampling_tasks(gs_path, mip=0, fill_missing=True)
116+
tq.insert_all(tasks)

deepem/test/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def initialize(self):
3939
# Multiclass detection
4040
self.parser.add_argument('--aff', action='store_true')
4141
self.parser.add_argument('--long', type=int, default=0)
42-
self.parser.add_argument('--aff_deprecated', type=int, default=16)
42+
self.parser.add_argument('--aff_deprecated', type=int, default=None)
4343
self.parser.add_argument('--bdr', action='store_true')
4444
self.parser.add_argument('--syn', action='store_true')
4545
self.parser.add_argument('--psd', action='store_true')

0 commit comments

Comments
 (0)