From 0aa6f7b53da5858b5999fe2d500449933f40062d Mon Sep 17 00:00:00 2001 From: s464961 Date: Fri, 10 May 2024 09:21:54 +0200 Subject: [PATCH] moved nlu to modules --- {modules => chatbot}/__init__.py | 0 {modules => chatbot/modules}/nlu.py | 0 evaluate.py | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename {modules => chatbot}/__init__.py (100%) rename {modules => chatbot/modules}/nlu.py (100%) diff --git a/modules/__init__.py b/chatbot/__init__.py similarity index 100% rename from modules/__init__.py rename to chatbot/__init__.py diff --git a/modules/nlu.py b/chatbot/modules/nlu.py similarity index 100% rename from modules/nlu.py rename to chatbot/modules/nlu.py diff --git a/evaluate.py b/evaluate.py index 4430177..e53292c 100644 --- a/evaluate.py +++ b/evaluate.py @@ -2,7 +2,7 @@ import os import re import pandas as pd import numpy as np -from modules.nlu import NLU +from chatbot.modules.nlu import NLU rows = 0 hits = 0