update gitignore to ignore venv

This commit is contained in:
Eugene 2023-04-20 14:06:24 +02:00
parent 47e49d3761
commit 025ccafaa4
2 changed files with 13 additions and 2 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
*.vs *.vs
DialogSystems/

View File

@ -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(): class NaturalLanguageUnderstanding():
def __init__(self, text): def __init__(self, text):