• Nicolas GUIGUI
  • NEWBIE
  • 20 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
Hi all,

I have created an object (Prediction__c) in my dev edition who contains 4 field: 
  • Store (lookup)
  • Date (date)
  • Sum (Currency)
  • Predict Sum (Currency)
This object contains 1000 rows with the value Sum filled.

I have created a prediction with Einstein predict builder to predict the field "Sum" and store the value in field "Predict Sum".
However, after wait 48 hours the preduiction doesn't working and the field still empty.

Prediction builder:
object to predict: Prediction__c
field to predict: Sum
where to save your prediction: Predict Sum
fields used to make a prediction: Store , Date , Sum
a particular segment in your data set: no
records should Einstein use as examples: Records with Sum > 0 (to keep only values with a value in the field Sum)

Do I have made something wrong ?

Thanks for your return
Hi everybody !

I train with the api Einstein vision and I have a business case:
Customers send us receipt and I want to use Einstein vision to determine all lines in the receipt.

If I have a custom dataset with all possible lines that I can found: Can Einstein vision determine all product in the receipt and get an API return like this:
{
"probabilities": [
{
"label": "Product 1",
"probability": 0.97554934
},
{
"label": "Product 2",
"probability": 0.974450686
},
{
"label": "Product 3",
"probability": 0.000000686
}
],
"object": "predictresponse"
}

So, this response indicates me that I have product 1 and 2 in the receipt.

Thanks a lot for your return !

Regards