Skip to content

Commit 0c0b3ae

Browse files
Automatic commit: Move 'cp-aibus-ber-custom-deploy' from QA to Production
1 parent dcd5718 commit 0c0b3ae

File tree

1 file changed

+83
-83
lines changed

1 file changed

+83
-83
lines changed

tutorials/cp-aibus-ber-custom-deploy/cp-aibus-ber-custom-deploy.md

Lines changed: 83 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -142,96 +142,96 @@ Use the **GET /inference/jobs/{`jobId`}** endpoint to see the text extraction re
142142

143143
3. Enter the `jobId` obtained in the previous step and click **Execute**.
144144

145-
!![BER](png-files/get-inf-1.png)
145+
!![BER](png-files/get-inf-1.png)
146146

147-
You should receive a response like the following:
147+
You should receive a response like the following:
148148

149-
!![BER](png-files/get-inf-2.png)
149+
!![BER](png-files/get-inf-2.png)
150150

151-
In the response, you will find the prediction for the extracted entities. The prediction is made with a probability indicated by the **confidence** field which represents how certain the model is about the value provided. A confidence of 1 means that the model is 100% sure about its prediction. The model tries to provide a value for all its capabilities. Thus, you may see a different result depending on your model's capabilities. In case the model cannot identify an entity in the text, it returns an empty value.
151+
In the response, you will find the prediction for the extracted entities. The prediction is made with a probability indicated by the **confidence** field which represents how certain the model is about the value provided. A confidence of 1 means that the model is 100% sure about its prediction. The model tries to provide a value for all its capabilities. Thus, you may see a different result depending on your model's capabilities. In case the model cannot identify an entity in the text, it returns an empty value.
152152

153-
Below, you find an example of a full prediction:
153+
Below, you find an example of a full prediction:
154154

155-
```JSON
155+
```JSON
156+
{
157+
"data": {
158+
"result": [
156159
{
157-
"data": {
158-
"result": [
159-
{
160-
"mobile": [
161-
{
162-
"confidence": 1,
163-
"value": "9000900090"
164-
}
165-
],
166-
"title": [
167-
{
168-
"confidence": 0.79,
169-
"value": "Mrs"
170-
}
171-
],
172-
"firstname": [
173-
{
174-
"confidence": 0.93,
175-
"value": "Hardi"
176-
}
177-
],
178-
"lastname": [
179-
{
180-
"confidence": 0.8,
181-
"value": "Shah"
182-
}
183-
],
184-
"address": [
185-
{
186-
"confidence": 0.9,
187-
"value": "Naranpura"
188-
}
189-
],
190-
"zip": [
191-
{
192-
"confidence": 1,
193-
"value": "380013"
194-
}
195-
],
196-
"city": [
197-
{
198-
"confidence": 0.9,
199-
"value": "Ahmedabad"
200-
}
201-
],
202-
"country": [
203-
{
204-
"confidence": 1,
205-
"value": "India"
206-
}
207-
],
208-
"emailID": [
209-
{
210-
"confidence": 0.97,
211-
212-
}
213-
],
214-
"designation": [
215-
{
216-
"confidence": 0.97,
217-
"value": "Sales & Marketing"
218-
}
219-
]
220-
}
221-
],
222-
"freePlanUsage": {
223-
"inferenceRequestsUsage": "Maximum limit of 30 , utilized 1 Inference count and remaining 29",
224-
"inferenceCharactersUsage": "Maximum limit of 120000 , utilized 1157 Inference characters and remaining 118843"
225-
},
226-
"id": "2819e45f-302d-4737-a390-c00cb186cf51",
227-
"status": "SUCCESS",
228-
"createdAt": "2022-05-09T13:44:58Z",
229-
"modifiedAt": "2022-05-09T13:45:03Z"
230-
}
160+
"mobile": [
161+
{
162+
"confidence": 1,
163+
"value": "9000900090"
164+
}
165+
],
166+
"title": [
167+
{
168+
"confidence": 0.79,
169+
"value": "Mrs"
170+
}
171+
],
172+
"firstname": [
173+
{
174+
"confidence": 0.93,
175+
"value": "Hardi"
176+
}
177+
],
178+
"lastname": [
179+
{
180+
"confidence": 0.8,
181+
"value": "Shah"
182+
}
183+
],
184+
"address": [
185+
{
186+
"confidence": 0.9,
187+
"value": "Naranpura"
188+
}
189+
],
190+
"zip": [
191+
{
192+
"confidence": 1,
193+
"value": "380013"
194+
}
195+
],
196+
"city": [
197+
{
198+
"confidence": 0.9,
199+
"value": "Ahmedabad"
200+
}
201+
],
202+
"country": [
203+
{
204+
"confidence": 1,
205+
"value": "India"
206+
}
207+
],
208+
"emailID": [
209+
{
210+
"confidence": 0.97,
211+
212+
}
213+
],
214+
"designation": [
215+
{
216+
"confidence": 0.97,
217+
"value": "Sales & Marketing"
218+
}
219+
]
231220
}
232-
```
233-
234-
You have now successfully used your own custom model to get text entity predictions for the unstructured text you submitted to Business Entity Recognition.
221+
],
222+
"freePlanUsage": {
223+
"inferenceRequestsUsage": "Maximum limit of 30 , utilized 1 Inference count and remaining 29",
224+
"inferenceCharactersUsage": "Maximum limit of 120000 , utilized 1157 Inference characters and remaining 118843"
225+
},
226+
"id": "2819e45f-302d-4737-a390-c00cb186cf51",
227+
"status": "SUCCESS",
228+
"createdAt": "2022-05-09T13:44:58Z",
229+
"modifiedAt": "2022-05-09T13:45:03Z"
230+
}
231+
}
232+
```
233+
234+
You have now successfully used your own custom model to get text entity predictions for the unstructured text you submitted to Business Entity Recognition.
235235

236236
[DONE]
237237
[ACCORDION-END]

0 commit comments

Comments
 (0)