Add files via upload

This commit is contained in:
Silviu Marian Udrescu 2020-05-15 04:44:39 -04:00 committed by GitHub
parent 1e1ee2d36f
commit aab277b976
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -184,7 +184,7 @@ def run_aifeynman(pathdir,filename,BF_try_time,BF_ops_file_type, polyfit_deg=4,
# Run gradient descent on the data one more time
for i in range(len(PA_list)):
try:
gd_update = final_gd(pathdir+filename,PA_list[i][-1])
gd_update = final_gd(pathdir,filename,PA_list[i][-1])
PA.add(Point(x=gd_update[1],y=gd_update[0],data=gd_update[2]))
except:
continue