Issue
Running a GA code on spyder through Anaconda, the script runs till the end and just before running the well plotter ( see below):
# Well Plotter
pdf = matplotlib.backends.backend_pdf.PdfPages("ROP Log.pdf")
plt.figure(figsize=(5,21))
plt.plot(well_proposal['Pred_ROP'] , well_proposal['AHD'], c='r', label= 'Predicted ROP')
plt.ylim( bottom =max(well_proposal['AHD']), top =min(well_proposal['AHD']))
plt.xlim(right = 100, left = 0)
plt.title('ROP VS Along Hole Depth')
plt.ylabel("Along Hole Depth (m)")
plt.xlabel("ROP (m/hr)")
plt.grid(b= True, which='both')
plt.legend(loc='upper right')
plt.tight_layout()
pdf.savefig()
pdf.close()
I got the following error " [SpyderKernelApp] WARNING | No such comm: 04cfd510c9b811ea9e48b8e8562fb6fe "
attempt to search for the error but it seems that most of the people stuck with [IPKernelApp] ERROR not [SpyderKernelApp]
Working on Mac OS Catalina 10.15.6
Any thoughts on the source of error?
Solution
I encountered a similar problem and it was solved by updating TensorFlow. Note: I was using anaconda.
Answered By - Nouman Aziz
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.