Guest User

Untitled

a guest
Nov 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. intent response Pid
  2. PizzaDelivery What Pizza do you like? 1.4.6
  3. WeatherForecast What do you want to know the weather? 2
  4. Emergency Number Dial 911 10.8.9
  5.  
  6. intent response
  7. PizzaDelivery I want to order a pizza
  8. WeatherForecast What's the weather in Manila
  9. Emergency Number What's the number to dial?
  10.  
  11. row_list = []
  12. for index,row in intentdatas.iterrows():
  13. if ([re.search("1",index) is not None for index in
  14. finalchat['Pid'].astype(str).str[0]] == 'TRUE'):
  15. row_list.append({'intent': row['intent'], 'phrases': row['phrases'],
  16. 'Team': 'Pizza'})
  17. elif ([re.search("2",index) is not None for index in
  18. finalchat['Pid'].astype(str).str[0]] == 'TRUE'):
  19. row_list.append({'intent': row['intent'], 'phrases': row['phrases'],
  20. 'Team': 'Weather'})
  21. elif ([re.search("10",index) is not None for index in
  22. finalchat['Pid'].astype(str).str[1]] == 'TRUE'):
  23. row_list.append({'intent': row['intent'], 'phrases': row['phrases'],
  24. 'Team': 'Emergency'})
  25.  
  26. intentdatas.head(10)
  27.  
  28. Intent Response Team
  29. PizzaDelivery I want to order a pizza Pizza
  30. WeatherForecast What's the weather in Manila Weather
  31. Emergency Number What's the number to dial? Emergency
Add Comment
Please, Sign In to add comment