We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b54993 commit d774510Copy full SHA for d774510
sc2ts/inference.py
@@ -303,10 +303,10 @@ def daily_extend(
303
yield ts, excluded_samples, date
304
305
# Update list of reconsidered samples.
306
+ reconsidered_samples.extend(excluded_samples)
307
if len(reconsidered_samples) > 0:
308
while reconsidered_samples[0].date == earliest_date:
309
reconsidered_samples.popleft()
- reconsidered_samples.extend(excluded_samples)
310
311
earliest_date += datetime.timedelta(days=1)
312
0 commit comments