You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnoldColumnsandc.execute("select sql like '%LAYERTYPE%' from sqlite_master where tbl_name='RUNS'").fetchone()[0]
162
+
160
163
defrunList1():
161
164
c=con.cursor()
162
-
ifnotoldColumns:
165
+
ifnot_getUseOldColumns():
163
166
raiseRuntimeError("runList1 not available in the new format")
164
167
b=c.execute("select repnlength, repn, count(step), min(objective), max(trainacc), max(testacc) from runs r left join steps s on r.count=s.run group by count").fetchall()
archClause=archClause+" and count >= "+str(runFrom)
205
209
runFrom=None
206
-
masterQuery="select count, "+("repnlength, repn,"ifoldColumnselse"") +" case when length(continuation)>0 then '+' else '' end || count(step), (select time from times where run = r.count) from runs r left join steps s on r.count=s.run %s group by count"% (archClauseifrunFromisNoneelse ("where count>= "+str(runFrom)))
210
+
masterQuery="select count, "+("repnlength, repn,"ifuseOldColumnselse"") +" case when length(continuation)>0 then '+' else '' end || count(step), (select time from times where run = r.count) from runs r left join steps s on r.count=s.run %s group by count"% (archClauseifrunFromisNoneelse ("where count>= "+str(runFrom)))
0 commit comments