-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrain.py
43 lines (31 loc) · 1.11 KB
/
train.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import json
import requests
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.naive_bayes import MultinomialNB
from sklearn.pipeline import make_pipeline
from joblib import dump
def download_responses(url):
response = requests.get(url)
data = response.json()
return data
def load_responses(file_path):
with open(file_path, "r") as file:
data = json.load(file)
return data
def train_model(data):
questions = list(data.keys())
responses = list(data.values())
model = make_pipeline(TfidfVectorizer(), MultinomialNB())
model.fit(questions, responses)
return model
def save_model(model, model_file="chat.joblib"):
dump(model, model_file)
print(f"Model saved to {model_file}")
if __name__ == "__main__":
url = "http://mantreshkhurana.com/projects/simple-ml-python-chatbot/chat.json"
download_responses_data = download_responses(url)
with open("chat.json", "w") as file:
json.dump(download_responses_data, file, indent=4)
responses_data = load_responses("chat.json")
model = train_model(responses_data)
save_model(model)