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:

  • configure your webserver to alias the urls starting with /m/ to the directory /root/askbot/askbot-devel-master/myappmysql1/askbot_site/static;
  • run python manage.py collectstatic.

  • Ask Your Question

    Revision history [back]

    click to hide/show revision 1
    initial version

    Not sure if "degrees" belongs to

    Utterance:

    how many degrees is it outside

    Annotation:

    1.weather:get -- how many [degrees]<weather_query> is it [outside]<relative_location>
    
    2.weather:other -- how many degrees is it outside
    

    Question:

    In annotation 1, it seems that the user is asking about the temperature. So we take "degrees" as <weather_query>.

    In annotation 2, we tag "degrees" as <unit>, but <unit> is not supported in weather domain. So we take this utterance as "weather:other".

    We are not sure which annotation is correct. And we are also not sure whether "outside" need to tag. Please advise how to deal with this situation. Thanks a lot.