NLP 任务的英语问候语列表?

Ami*_*min 0 nlp machine-learning chatbot deep-learning

我想要用于自然语言处理任务的英语问候短语列表,所以我想知道在哪里可以找到类似的东西?

Pra*_*ell 6

希望它有帮助!

[“嗨”,“你好”,“嘿”,“你好”,“你好”,“早上好”,“早上好”,“早上好”,“早上好”,“美好的一天”,“下午好”,“晚上好”、“问候”、“问候”、“很高兴见到你”、“很高兴见到你”、“你好吗”、“你好吗”、“你好吗”、“你好吗” '”、“你好吗”、“一切都好吗”、“一切都怎么样”、“一切都怎么样”、“你怎么样”、“你怎么样”、“事情怎么样”、“事情怎么样” ", "怎么样", "怎么样", "怎么样", "怎么样",“生活如何对待你”,“生活如何对待你”,“你过得怎么样”,“你过得怎么样”,“怎么了”,“怎么了”,“怎么了”,“什么是破解”,“什么是好的”,“什么是好的”,“正在发生什么”,“正在发生什么”,“什么是新的”,“什么是新的”,“什么是新的”,“g'day”,“你好”]发生了什么”、“有什么新鲜事”、“有什么新鲜事”、“有什么新鲜事”、“g'day”、“你好”]发生了什么”、“有什么新鲜事”、“有什么新鲜事”、“有什么新鲜事”、“g'day”、“你好”]

将其另存为 txt 文件并稍后加载。

import json
greeting_words = json.loads(open('greetings.txt', 'r').read())
print(greeting_words)

>> ["hi", "hello", "hey", "helloo", "hellooo", "g morining",  "gmorning",  "good morning", "morning", "good day", "good afternoon", "good evening", "greetings", "greeting", "good to see you", "its good seeing you", "how are you", "how're you", "how are you doing", "how ya doin'", "how ya doin", "how is everything", "how is everything going", "how's everything going", "how is you", "how's you", "how are things", "how're things", "how is it going", "how's it going", "how's it goin'", "how's it goin", "how is life been treating you", "how's life been treating you", "how have you been", "how've you been", "what is up", "what's up", "what is cracking", "what's cracking", "what is good", "what's good", "what is happening", "what's happening", "what is new", "what's new", "what is neww", "g’day", "howdy"]
Run Code Online (Sandbox Code Playgroud)