На последовательности действий: UnicodeDecodeError: код 'utf-8' c не может декодировать байт 0xff в позиции 110: недопустимый начальный байт - PullRequest
0 голосов
/ 03 мая 2020

Я пытаюсь обучить модель кафе на Google Colab. выполните все шаги правильно, но когда я пытаюсь запустить команду caffe train

!/content/caffe/build/tools/caffe train --solver=/content/caffe/models/bvlc_reference_caffenet/solver.prototxt

Это дает мне эту ошибку

---------------------------------------------------------------------------

UnicodeDecodeError                        Traceback (most recent call last)

<ipython-input-69-cdda4b22143f> in <module>()
----> 1 get_ipython().system('/content/caffe/build/tools/caffe train --solver=/content/caffe/models/bvlc_reference_caffenet/solver.prototxt')

5 frames

/usr/lib/python3.6/codecs.py in decode(self, input, final)
    319         # decode input (taking the buffer into account)
    320         data = self.buffer + input
--> 321         (result, consumed) = self._buffer_decode(data, self.errors, final)
    322         # keep undecoded input until the next call
    323         self.buffer = data[consumed:]

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 110: invalid start byte

Может кто-нибудь помочь, пожалуйста? Спасибо.

...