Created
June 25, 2021 08:03
-
-
Save Davisy/78832ad634e76d55c9c9a7b2b38babc1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# text preprocessing modules | |
from string import punctuation | |
# text preprocessing modules | |
from nltk.tokenize import word_tokenize | |
import nltk | |
from nltk.corpus import stopwords | |
from nltk.stem import WordNetLemmatizer | |
import re # regular expression | |
import os | |
from os.path import dirname, join, realpath | |
import joblib | |
import uvicorn | |
from fastapi import FastAPI |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment