When in the google colab page, i put the link to the model in the right place, the link is valid, but when i click "play" button, it returns me an error which is the following :
"---------------------------------------------------------------------------
JSONDecodeError Traceback (most recent call last)
<ipython-input-12-fb8988734d83> in <cell line: 31>()
31 if os.path.exists(config_path):
32 # File exists, proceed with creation of creds and client
---> 33 creds = Credentials.from_service_account_file(config_path, scopes=scope)
34 client = gspread.authorize(creds)
35 else:
5 frames
/usr/lib/python3.10/json/decoder.py in raw_decode(self, s, idx)
353 obj, end = self.scan_once(s, idx)
354 except StopIteration as err:
--> 355 raise JSONDecodeError("Expecting value", s, err.value) from None
356 return obj, end
JSONDecodeError: Expecting value: line 1 column 1 (char 0)"
What is that please ?