Я изучаю машинное обучение. Я создаю приложение с помощью azure-cognitiveservices-vision-face, и у меня возникла проблема, как показано на рисунке ниже (APIErrorException: (404) Ресурс не найден). как я могу это исправить? Спасибо и извините, потому что мой английский очень плохой. введите описание изображения здесь
APIErrorException Traceback (most recent call last)
<ipython-input-38-889e8e1c61a7> in <module>()
1 single_face_image_url = 'https://www.biography.com/.image/t_share/MTQ1MzAyNzYzOTgxNTE0NTEz/john-f-kennedy---mini-biography.jpg'
2 single_image_name = os.path.basename(single_face_image_url)
----> 3 detected_faces = face_client.face.detect_with_url(url=single_face_image_url)
4 if not detected_faces:
5 raise Exception('No face detected from image {}'.format(single_image_name))
/usr/local/lib/python3.6/dist-packages/azure/cognitiveservices/vision/face/operations/_face_operations.py in detect_with_url(self, url, return_face_id, return_face_landmarks, return_face_attributes, recognition_model, return_recognition_model, detection_model, custom_headers, raw, **operation_config)
547
548 if response.status_code not in [200]:
--> 549 raise models.APIErrorException(self._deserialize, response)
550
551 deserialized = None
APIErrorException: (404) Resource not found