Guest User

Untitled

a guest
Dec 4th, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.85 KB | None | 0 0
  1. script:
  2.   text: Hello. I'm weather robot. How can I help you?
  3.   name: main
  4.   children:
  5.    -
  6.       name: city_conditions
  7.       text: "Conditions in {%print $city%} is next."
  8.       conditions:
  9.         class: conditions
  10.         entity_variables:
  11.           city: $city
  12.     -
  13.       name: city_temperature
  14.       text: "Temperature in {%print $city%} is next."
  15.       conditions:
  16.         class: temperature
  17.         entity_variables:
  18.           city: $city
  19.     -
  20.       name: conditions
  21.       text: Okay, type city name.
  22.       conditions:
  23.         class: conditions
  24.       children:
  25.        -
  26.           name: conditions_city_selected
  27.           text: "{%goto city_conditions%}"
  28.           conditions:
  29.             entity_variables:
  30.               city: $city
  31.     -
  32.       name: temperature
  33.       text: Okay, type city name.
  34.       conditions:
  35.         class: temperature
  36.       children:
  37.        -
  38.           name: temperature_city_selected
  39.           text: "{%goto city_temperature%}"
  40.           conditions:
  41.             entity_variables:
  42.               city: $city
  43. entities:
  44.   city:
  45.    - Moscow
  46.     - Tokyo
  47.     - Ottava
  48. synonyms:
  49.   Moscow:
  50.    - default city
  51.     - DC
  52. classes:
  53.   temperature:
  54.    - How hot is it today?
  55.     - Is it hot outside?
  56.     - Will it be uncomfortably hot?
  57.     - Will it be sweltering?
  58.     - How cold is it today?
  59.     - Is it cold outside?
  60.     - Will it be uncomfortably cold?
  61.     - Will it be frigid?
  62.     - What is the expected high for today?
  63.     - What is the expected temperature?
  64.     - Will high temperatures be dangerous?
  65.     - Is it dangerously cold?
  66.     - When will the heat subside?
  67.     - Is it hot?
  68.     - Is it cold?
  69.     - How cold is it now?
  70.     - Will we have a cold day today?
  71.     - When will the cold subside?
  72.     - What highs are we expecting?
  73.     - What lows are we expecting?
  74.     - Is it warm?
  75.     - Is it chilly?
  76.     - What's the current temp in Celsius?
  77.     - What is the temperature in Fahrenheit?
  78.   conditions:
  79.    - Is it windy?
  80.     - Will it rain today?
  81.     - What are the chances for rain?
  82.     - Will we get snow?
  83.     - Are we expecting sunny conditions?
  84.     - Is it overcast?
  85.     - Will it be cloudy?
  86.     - How much rain will fall today?
  87.     - How much snow are we expecting?
  88.     - Is it windy outside?
  89.     - How much snow do we expect?
  90.     - Is the forecast calling for snow today?
  91.     - Will we see some sun?
  92.     - When will the rain subside?
  93.     - Is it cloudy?
  94.     - Is it sunny now?
  95.     - Will it rain?
  96.     - Will we have much snow?
  97.     - Are the winds dangerous?
  98.     - What is the expected snowfall today?
  99.     - Will it be dry?
  100.     - Will it be breezy?
  101.     - Will it be humid?
  102.     - What is today's expected humidity?
  103.     - Will the blizzard hit us?
  104.     - Is it drizzling?
  105. classifier_params:
  106.   filter_sizes: [1]
  107.   hidden_size: 100
  108.   nb_filter: 150
  109. min_class_confidence: 0.8
Add Comment
Please, Sign In to add comment