From 025ccafaa44745b79ff826d828fef996ed801b0d Mon Sep 17 00:00:00 2001 From: Eugene Date: Thu, 20 Apr 2023 14:06:24 +0200 Subject: [PATCH] update gitignore to ignore venv --- .gitignore | 3 ++- system.py | 12 +++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f34dc10..6f4170b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -*.vs \ No newline at end of file +*.vs +DialogSystems/ \ No newline at end of file diff --git a/system.py b/system.py index 360e2bd..58902d7 100644 --- a/system.py +++ b/system.py @@ -1,4 +1,14 @@ -NAME = 'ABC' +import spacy +import string +from spacy.lang.pl import Polish + + + + +nlp = spacy.load("pl_core_news_md") + + +NAME = 'Ricardo' class NaturalLanguageUnderstanding(): def __init__(self, text):