chore: old thing
This commit is contained in:
parent
ec57dc7231
commit
f1b634b20b
15
2021-08-18/nichol_help/main.py
Normal file
15
2021-08-18/nichol_help/main.py
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import re;
|
||||||
|
|
||||||
|
def main():
|
||||||
|
file = open("anova_rf-0.txt", "r")
|
||||||
|
|
||||||
|
val_acc_rgx = re.compile("val_acc:\s\d\.\d{4}")
|
||||||
|
|
||||||
|
for line in file.readlines():
|
||||||
|
m = val_acc_rgx.search(line)
|
||||||
|
|
||||||
|
if m:
|
||||||
|
print(float(m.group(0).split(" ")[1]))
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
Loading…
x
Reference in New Issue
Block a user