Hi there,
I’m new using label studio and I’m assigned to make a project for extracting data from invoices with different layouts using LayoutLM.
Since the invoices have thousands of words and need to label in the BIO format, meaning I need to label all the words I wanted to speed up the process.
I created a project on label studio Community with a storage to provide the images and deployed a backend ML to make the OCR and to label every word with O and then I will correct the entities I want to extract.
I’m having an issue that is strange. I call the predict from label studio and there is a 200 from the backend side and also a predict associated on a tab but the ocr_text is not passing to the frontend and also the labeling is not showing.
Here is my backend code where the answer is being made to the request.
predictions.append({
"id": str(id_counter),
"model_version": "ocr-bbox-initial-o-v1",
"type": "rectanglelabels",
"from_name": "bbox", # Assuming your RectangleLabels name is "bbox"
"to_name": "image",
"original_width": img_width,
"original_height": img_height,
"image_rotation": 0,
"value": {
"rotation": 0,
"x": x_normalized,
"y": y_normalized,
"width": w_normalized,
"height": h_normalized,
"rectanglelabels": ["O"]
}
})
id_counter += 1
response = {
"data": {"image": task["data"].get("image"),
"ocr_text": ocr_text},
"results": [
{
"model_version": "ocr-bbox-initial-o-v1",
"result": predictions
}
]
}
Here is the config I have in the project
<View>
<Image name="image" value="$image" zoom="true" zoomControl="false"
rotateControl="true" width="100%" height="100%"
maxHeight="auto" maxWidth="auto"/>
<TextArea name="ocr_text" toName="image" value="$ocr_text"
editable="true"
perRegion="false"
required="false"
maxSubmissions="1"
rows="5"
placeholder="Recognized Text"
selectable="true"
granularity="word"
useModel="true" />
<Labels name="ner" toName="ocr_text" useModel="true">
<Label value="B-NIF" background="#ff5733"/>
<Label value="B-FORN" background="#33ff57"/>
<Label value="B-DATA" background="#3375ff"/>
<Label value="B-VALOR" background="#ff33a1"/>
<Label value="B-NUMFAT" background="#f3ff33"/>
<Label value="I-NIF" background="#ff5733"/>
<Label value="I-FORN" background="#33ff57"/>
<Label value="I-DATA" background="#3375ff"/>
<Label value="I-VALOR" background="#ff33a1"/>
<Label value="I-NUMFAT" background="#f3ff33"/>
<Label value="O" background="#aaa"/>
</Labels>
</View>
Any advice here?
Thanks