You are seeing this message because you are using the Django runserver and the DEBUG setting is False.
Runserver should not be used in the production.
If you do not see page the styling - set DEBUG = True or use --insecure flag with the runserver command.
To serve the static media in the production:
1 | initial version |
It can be helpful to extract the parsetype and mentions from left to right to get an idea of what the system will do with an annotation. For example, in this example:
business:restaurant:get -- what is the name of [that]<business_anaphora> [restaurant]<generic_business> business:restaurant:get [that] [restaurant]
We are essentially asking the system to focus on a business that is a restaurant and to show 'that'(anaphor) restaurant
If we do the same with business:business: get -- what [other]<which> names does the [chrysler building]<named_business> have business:business:get [other] [chrysler building]
It isn't clear that we are asking for other names for the building, it appears rather that we are asking the system for "another chrysler building", so that wouldn't work well here.
In business, some "trivia" type questions are supported, e.g. business:business:questionbuilder -- who built the [eiffel tower]<named_business> business:business:questionelevation -- what's the elevation of the [eiffel tower]<named_business>
However, we don't support questions asking for alternative names, so in this case, "other" intent is correct.