LUIS importing list items from json randomly drops list values/synonyms

Bruce Regner 1 Reputation point
2020-05-22T20:31:12.17+00:00

When uploading json file into entities - list items, canonical forms are added correctly, while "list" values - synonyms - are randomly missing. After deleting all values and repeating the upload, other synonyms are missing. Any ideas?

Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,371 questions
{count} votes

1 answer

Sort by: Most helpful
  1. GiftA-MSFT 11,151 Reputation points
    2020-05-28T21:38:03.517+00:00

    Hi,

    I tried to import values as shown below and my attempt was successful. I'm not able to reproduce the issue you presented. Please share more details about this issue (particularly the json file you tried importing) so we can investigate further. Thanks.

    [  
        {  
            "canonicalForm": "Red",  
            "list": [  
                "crimson",  
                "blood",  
                "apple",  
                "fire-engine"  
            ]  
        },  
        {  
            "canonicalForm": "Blue",  
            "list": [  
                "sky",  
                "cobalt"  
            ]  
        },  
        {  
            "canonicalForm": "Green",  
            "list": [  
                "kelly",  
                "lime"  
            ]  
        }  
    ]  
    

    8802-list-items.png

    0 comments No comments