Assigned
Status Update
Comments
pu...@google.com <pu...@google.com>
ja...@google.com <ja...@google.com> #2
Hello,
To assist us in conducting thorough investigation, we kindly request your cooperation in providing the following information regarding the reported issue:
- Has this scenario ever worked as expected in the past?
- Do you see this issue constantly or intermittently ?
- If this issue is seen intermittently, then how often do you observe this issue ? Is there any specific scenario or time at which this issue is observed ?
- To help us understand the issue better, please provide detailed steps to reliably reproduce the problem.
- It would be greatly helpful if you could attach screenshots of the output related to this issue.
Your cooperation in providing these details will enable us to dive deeper into the matter and work towards a prompt resolution. We appreciate your assistance and look forward to resolving this issue for you.
Thank you for your understanding and cooperation.
Description
Tried to train a model with a new label, as usual, but this time it gives error 13: internal error encountered on the UI, with this error object
{
"trainingDatasetValidation": {},
"testDatasetValidation": {}
},
"error": {
"code": 13,
"message": "Internal error encountered.",
"details": []
}
}
But checking the network tab on the dev tools and finding an specific fetch, I encountered this error object
{
"trainingDatasetValidation": {
"datasetErrors": [
{
"code": 3,
"message": "Invalid dataset.",
"details": [
{
"@type": "
"reason": "INVALID_DATASET",
"domain": "
"metadata": {
"max_pages_allowed": "600",
"annotation_name": "PAGES",
"num_pages": "1001"
}
}
]
},
{
"code": 3,
"message": "Invalid dataset.",
"details": [
{
"@type": "
"reason": "INVALID_DATASET",
"domain": "
"metadata": {
"max_documents_allowed": "300",
"num_documents_with_annotation": "756",
"annotation_name": "DOCUMENTS_WITH_ENTITIES"
}
}
]
}
],
"datasetErrorCount": 2
},
"testDatasetValidation": {}
},
"error": {
"code": 3,
"message": "Invalid dataset. See operation metadata for specific errors.",
"details": []
}
}
The thing is that it says "num_documents_with_annotation": "756", but in my training dataset I did remove documents, now I do have 500 documents with annotations, but doesn''t seem to change. Also I dont understand the error of "num_pages": "1001", it's a sum of all the pages of all my documents on training dataset?
Thanks in advance.