Hello, can you please help to run the code on google colab?
How to view images on the colab without doing much work? For each file? Probably creating a directory on the notebook colab folder, where I put all the images?
Right now I get this error:
Image(filename='images/03_01.png', width=400)
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-149-4c8da45e0c5c> in <module>()
----> 1 Image(filename='images/04_01.png', width=400)
Then there's the watermark problem, which is easy, I've just added pip install to your files:
# add this to run in colab:
!pip install -q -U watermark
# this is the same
%load_ext watermark
%watermark -a "Sebastian Raschka" -u -d -p numpy,pandas,matplotlib,sklearn
Hello, can you please help to run the code on google colab?
How to view images on the colab without doing much work? For each file? Probably creating a directory on the notebook colab folder, where I put all the images?
Right now I get this error:
Then there's the watermark problem, which is easy, I've just added pip install to your files: