Upload 4 files
Browse files- chatbot_final.h5 +3 -0
- classes.pkl +3 -0
- intents.json +154 -0
- words.pkl +3 -0
chatbot_final.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a56ed623c2e999ae864e570a233b6111dbb3647a1e35237f4bfc41ade816ea90
|
3 |
+
size 196520
|
classes.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bd8ec8d5a44cd724f5b5640023b43e3d647c4359689f9d11df27b4cc8c637c2
|
3 |
+
size 140
|
intents.json
ADDED
@@ -0,0 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"intents": [
|
3 |
+
{
|
4 |
+
"tag": "greeting",
|
5 |
+
"patterns": [
|
6 |
+
"Hi",
|
7 |
+
"Hey",
|
8 |
+
"How are you",
|
9 |
+
"Is anyone there?",
|
10 |
+
"Hello",
|
11 |
+
"Good day",
|
12 |
+
"Hey boy"
|
13 |
+
],
|
14 |
+
"responses": [
|
15 |
+
"Hey :-)",
|
16 |
+
"Hello, thanks for visiting",
|
17 |
+
"Hi there, what can I do for you?",
|
18 |
+
"Hi there, how can I help?"
|
19 |
+
]
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"tag": "goodbye",
|
23 |
+
"patterns": ["Bye", "See you later", "Goodbye"],
|
24 |
+
"responses": [
|
25 |
+
"See you later, thanks for visiting",
|
26 |
+
"Have a nice day",
|
27 |
+
"Bye! Come back again soon."
|
28 |
+
]
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"tag": "thanks",
|
32 |
+
"patterns": ["Thanks", "Thank you", "That's helpful", "Thank's a lot!"],
|
33 |
+
"responses": ["Happy to help!", "Any time!", "My pleasure"]
|
34 |
+
},
|
35 |
+
{
|
36 |
+
"tag": "items",
|
37 |
+
"patterns": [
|
38 |
+
"Which items do you have?",
|
39 |
+
"What kinds of items are there?",
|
40 |
+
"What do you sell?"
|
41 |
+
],
|
42 |
+
"responses": ["I sell web development servece"]
|
43 |
+
},
|
44 |
+
{
|
45 |
+
"tag": "payments",
|
46 |
+
"patterns": [
|
47 |
+
"Do you take credit cards?",
|
48 |
+
"Do you accept Mastercard?",
|
49 |
+
"Can I pay with Paypal?",
|
50 |
+
"Are you cash only?"
|
51 |
+
],
|
52 |
+
"responses": [
|
53 |
+
"We accept VISA, Mastercard and Paypal",
|
54 |
+
"We accept most major credit cards, and Paypal"
|
55 |
+
]
|
56 |
+
},
|
57 |
+
{
|
58 |
+
"tag": "delivery",
|
59 |
+
"patterns": [
|
60 |
+
"How long does delivery take?",
|
61 |
+
"How long does shipping take?",
|
62 |
+
"When do I get my delivery?"
|
63 |
+
],
|
64 |
+
"responses": ["Delivery takes 2-4 days", "Shipping takes 2-4 days"]
|
65 |
+
},
|
66 |
+
{
|
67 |
+
"tag": "funny",
|
68 |
+
"patterns": [
|
69 |
+
"Tell me a joke!",
|
70 |
+
"Tell me something funny!",
|
71 |
+
"Do you know a joke?",
|
72 |
+
"Joke",
|
73 |
+
"Tell joke",
|
74 |
+
"Joke plece",
|
75 |
+
"tell joke"
|
76 |
+
],
|
77 |
+
"responses": [
|
78 |
+
"Why did the hipster burn his mouth? He drank the coffee before it was cool.",
|
79 |
+
"What did the buffalo say when his son left for college? Bison.",
|
80 |
+
"For fun, Chuck Norris crab fishes in the Bearing Sea with just a snorkel and a laundry basket.",
|
81 |
+
"Chuck Norris' opinion is considered to be a fatwa in Japan.",
|
82 |
+
"When Chuck Norris sits down and puts a pack of microwave popcorn in his lap, it immediately explodes with the power of a nailbomb. It's his favorite party trick.",
|
83 |
+
"Chuck Norris pisses gold and craps chocolate."
|
84 |
+
]
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"tag": "name",
|
88 |
+
"patterns": [
|
89 |
+
"Who are you?",
|
90 |
+
"what is your name",
|
91 |
+
"Your name",
|
92 |
+
"Tell me your name",
|
93 |
+
"Name"
|
94 |
+
],
|
95 |
+
"responses": [
|
96 |
+
"Hi my name is Robin",
|
97 |
+
"I am Robin",
|
98 |
+
"It's robin nice to meet you"
|
99 |
+
]
|
100 |
+
},
|
101 |
+
|
102 |
+
{
|
103 |
+
"tag": "age",
|
104 |
+
"patterns": [
|
105 |
+
"Who is you age?",
|
106 |
+
"How old are you?",
|
107 |
+
"How old you are?",
|
108 |
+
"Age",
|
109 |
+
"Tell me you age"
|
110 |
+
],
|
111 |
+
"responses": ["I am 18", "18"]
|
112 |
+
},
|
113 |
+
{
|
114 |
+
"tag": "proffession",
|
115 |
+
"patterns": [
|
116 |
+
"What do you do?",
|
117 |
+
"What is your proffession",
|
118 |
+
"Do you have any job",
|
119 |
+
"Job",
|
120 |
+
"Your job"
|
121 |
+
],
|
122 |
+
"responses": ["I am a web developer", "web developer"]
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"tag": "about",
|
126 |
+
"patterns": [
|
127 |
+
"Tell me about you",
|
128 |
+
"About yourself",
|
129 |
+
"Details about you",
|
130 |
+
"About you",
|
131 |
+
"Tell me about yourself"
|
132 |
+
],
|
133 |
+
"responses": [
|
134 |
+
"Hi I'm a web developer. And i am currently 18 years old. I live in gazipur,Bangladesh",
|
135 |
+
"I am a web developer"
|
136 |
+
]
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"tag": "currenttime",
|
140 |
+
"patterns": [
|
141 |
+
"What is current time?",
|
142 |
+
"Current time",
|
143 |
+
"What times it",
|
144 |
+
"Time now"
|
145 |
+
],
|
146 |
+
"responses": ["Sorry i don't have a watch", "Sorry i don't know"]
|
147 |
+
},
|
148 |
+
{
|
149 |
+
"tag": "sing",
|
150 |
+
"patterns": ["Can you sing", "Sing a snog", "Sing song"],
|
151 |
+
"responses": ["Sorry i cant sing", "I can't sing"]
|
152 |
+
}
|
153 |
+
]
|
154 |
+
}
|
words.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6db0f1d170643b2b28f537cacdcc7dcdbb3e35eff6809e32ad0dcc90480753c9
|
3 |
+
size 655
|