├── .gitignore ├── Backend ├── DockerFile ├── TestQuestions.txt ├── breastCancer.json ├── breastCancer1.json ├── chat.py ├── chatbotmodel.h5 ├── chatbotmodel1.h5 ├── classes.pkl ├── main.py ├── train.py ├── utils.py └── words.pkl ├── BreastCancerChatbotDataset.csv ├── Frontend ├── DockerFile ├── chat-bot.py ├── images │ ├── Abdullah.jpg │ ├── Ahmed.jpg │ ├── Dataset.JPG │ ├── Hasnain.jpg │ ├── Logo.JPG │ ├── Neeraj.jpg │ ├── Questions.JPG │ ├── Week2.JPG │ ├── Week4.JPG │ ├── Week5.JPG │ └── breastCancer.jpg └── pages │ └── About.py ├── Model.ipynb ├── README.md ├── breastCancer.json ├── chat.ipynb ├── chat.py ├── chatbotmodel.h5 ├── classes.pkl ├── requirements.txt └── words.pkl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Backend/DockerFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/TestQuestions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/TestQuestions.txt -------------------------------------------------------------------------------- /Backend/breastCancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/breastCancer.json -------------------------------------------------------------------------------- /Backend/breastCancer1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/breastCancer1.json -------------------------------------------------------------------------------- /Backend/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/chat.py -------------------------------------------------------------------------------- /Backend/chatbotmodel.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/chatbotmodel.h5 -------------------------------------------------------------------------------- /Backend/chatbotmodel1.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/chatbotmodel1.h5 -------------------------------------------------------------------------------- /Backend/classes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/classes.pkl -------------------------------------------------------------------------------- /Backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/main.py -------------------------------------------------------------------------------- /Backend/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/train.py -------------------------------------------------------------------------------- /Backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/utils.py -------------------------------------------------------------------------------- /Backend/words.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Backend/words.pkl -------------------------------------------------------------------------------- /BreastCancerChatbotDataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/BreastCancerChatbotDataset.csv -------------------------------------------------------------------------------- /Frontend/DockerFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/chat-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/chat-bot.py -------------------------------------------------------------------------------- /Frontend/images/Abdullah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Abdullah.jpg -------------------------------------------------------------------------------- /Frontend/images/Ahmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Ahmed.jpg -------------------------------------------------------------------------------- /Frontend/images/Dataset.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Dataset.JPG -------------------------------------------------------------------------------- /Frontend/images/Hasnain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Hasnain.jpg -------------------------------------------------------------------------------- /Frontend/images/Logo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Logo.JPG -------------------------------------------------------------------------------- /Frontend/images/Neeraj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Neeraj.jpg -------------------------------------------------------------------------------- /Frontend/images/Questions.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Questions.JPG -------------------------------------------------------------------------------- /Frontend/images/Week2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Week2.JPG -------------------------------------------------------------------------------- /Frontend/images/Week4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Week4.JPG -------------------------------------------------------------------------------- /Frontend/images/Week5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/Week5.JPG -------------------------------------------------------------------------------- /Frontend/images/breastCancer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/images/breastCancer.jpg -------------------------------------------------------------------------------- /Frontend/pages/About.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Frontend/pages/About.py -------------------------------------------------------------------------------- /Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/Model.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/README.md -------------------------------------------------------------------------------- /breastCancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/breastCancer.json -------------------------------------------------------------------------------- /chat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/chat.ipynb -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/chat.py -------------------------------------------------------------------------------- /chatbotmodel.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/chatbotmodel.h5 -------------------------------------------------------------------------------- /classes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/classes.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /words.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullahw72/Breast-Cancer-Chatbot/HEAD/words.pkl --------------------------------------------------------------------------------