├── 8puzzle ├── 8puzzle.py ├── gbfs.py ├── main.py └── state.py ├── A STAR ├── Astar.py ├── astar graph.png └── astarshort.ipynb ├── Medical Expert System ├── Disease descriptions │ ├── Alzheimers.txt │ ├── Arthritis.txt │ ├── Asthma.txt │ ├── Coronavirus.txt │ ├── Diabetes.txt │ ├── Epilepsy.txt │ ├── Glaucoma.txt │ ├── Heart Disease.txt │ ├── Heat Stroke.txt │ ├── Hyperthyroidism.txt │ ├── Hypothermia.txt │ ├── Jaundice.txt │ ├── Sinusitis.txt │ └── Tuberculosis.txt ├── Disease symptoms │ ├── Alzheimers.txt │ ├── Arthritis.txt │ ├── Asthma.txt │ ├── Coronavirus.txt │ ├── Diabetes.txt │ ├── Epilepsy.txt │ ├── Glaucoma.txt │ ├── Heart Disease.txt │ ├── Heat Stroke.txt │ ├── Hyperthyroidism.txt │ ├── Hypothermia.txt │ ├── Jaundice.txt │ ├── Sinusitis.txt │ └── Tuberculosis.txt ├── Disease treatments │ ├── Alzheimers.txt │ ├── Arthritis.txt │ ├── Asthma.txt │ ├── Coronavirus.txt │ ├── Diabetes.txt │ ├── Epilepsy.txt │ ├── Glaucoma.txt │ ├── Heart Disease.txt │ ├── Heat Stroke.txt │ ├── Hyperthyroidism.txt │ ├── Hypothermia.txt │ ├── Jaundice.txt │ ├── Sinusitis.txt │ └── Tuberculosis.txt ├── __pycache__ │ ├── greetings.cpython-311.pyc │ └── greetings.cpython-312.pyc ├── diseases.txt ├── greetings.py ├── main.py └── requirements.txt ├── NLP ├── .ipynb_checkpoints │ ├── NLPtask-checkpoint.ipynb │ ├── Untitled-checkpoint.ipynb │ ├── nlp-checkpoint.ipynb │ └── nlpspacyone-checkpoint.ipynb ├── NLP.ipynb ├── NLPtask.ipynb └── nlpspacyone.ipynb ├── README.md ├── case studies projects ├── expertsys │ ├── Disease descriptions │ │ ├── Alzheimers.txt │ │ ├── Arthritis.txt │ │ ├── Asthma.txt │ │ ├── Coronavirus.txt │ │ ├── Diabetes.txt │ │ ├── Epilepsy.txt │ │ ├── Glaucoma.txt │ │ ├── Heart Disease.txt │ │ ├── Heat Stroke.txt │ │ ├── Hyperthyroidism.txt │ │ ├── Hypothermia.txt │ │ ├── Jaundice.txt │ │ ├── Sinusitis.txt │ │ └── Tuberculosis.txt │ ├── Disease symptoms │ │ ├── Alzheimers.txt │ │ ├── Arthritis.txt │ │ ├── Asthma.txt │ │ ├── Coronavirus.txt │ │ ├── Diabetes.txt │ │ ├── Epilepsy.txt │ │ ├── Glaucoma.txt │ │ ├── Heart Disease.txt │ │ ├── Heat Stroke.txt │ │ ├── Hyperthyroidism.txt │ │ ├── Hypothermia.txt │ │ ├── Jaundice.txt │ │ ├── Sinusitis.txt │ │ └── Tuberculosis.txt │ ├── Disease treatments │ │ ├── Alzheimers.txt │ │ ├── Arthritis.txt │ │ ├── Asthma.txt │ │ ├── Coronavirus.txt │ │ ├── Diabetes.txt │ │ ├── Epilepsy.txt │ │ ├── Glaucoma.txt │ │ ├── Heart Disease.txt │ │ ├── Heat Stroke.txt │ │ ├── Hyperthyroidism.txt │ │ ├── Hypothermia.txt │ │ ├── Jaundice.txt │ │ ├── Sinusitis.txt │ │ └── Tuberculosis.txt │ ├── diseases.txt │ ├── greetings.py │ ├── main.py │ └── requirements.txt ├── gamebot tic tac toe │ ├── GamebotTicTacToe.ipynb │ ├── TicTacToe.py │ ├── interactivegame.py │ └── readme.txt └── textclassification │ └── textclassification.ipynb ├── classifierss ├── ML │ └── ML notes │ │ └── Unit-4MLl.pptx └── programs │ ├── .ipynb_checkpoints │ ├── MLPClassifier-checkpoint.ipynb │ ├── MLPClassifierSMOTE-checkpoint.ipynb │ └── Untitled-checkpoint.ipynb │ ├── HR_comma_sep.csv │ ├── MLPClassifier.ipynb │ ├── MLPClassifierSMOTE.ipynb │ └── decisiontreesmall.ipynb ├── decisiontree ├── diabetes │ ├── .ipynb_checkpoints │ │ ├── diabetesclassf-checkpoint.ipynb │ │ └── diabetesentropyclassf-checkpoint.ipynb │ ├── diabetes.csv │ ├── diabetesclassf.ipynb │ └── diabetesentropyclassf.ipynb ├── iris │ ├── decisiontreesmall.ipynb │ └── iris.csv ├── studentt │ ├── decisiontreesmallstudent.ipynb │ └── student_dataset.csv └── weightheight │ ├── decisiontreesmallweight.ipynb │ └── weight_height_dataset.csv ├── hangman game └── manual │ ├── __pycache__ │ ├── hangman_art.cpython-312.pyc │ └── hangman_words.cpython-312.pyc │ ├── hangman_art.py │ ├── hangman_words.py │ └── hangmanv5.py ├── nqueens └── queen.py ├── numpy ├── .ipynb_checkpoints │ └── numpyml-checkpoint.ipynb └── numpyml.ipynb ├── pandas ├── pandas_d │ ├── dataset │ │ ├── car-sales.csv │ │ └── export_cars.csv │ └── pandasnotebook │ │ └── pandasfk.ipynb └── pandasprogram.ipynb ├── prolog ├── cartypes.pl ├── cartypes.pl~ ├── familytree.pl ├── familytree.pl~ ├── girlstudents.pl ├── girlstudents.pl~ ├── outputcartypes.png ├── outputgirlstudents.png ├── prolog.pptx ├── simplefacts.pl └── simplefacts.pl~ ├── pythonbasics ├── List.ipynb └── ai lab basics.ipynb ├── requirements.txt ├── students_contributions ├── 1.png ├── 2.png ├── 3.png ├── 8puzzle (2).py ├── 8puzzle.py ├── A star.ipynb ├── AI_NUMPY.ipynb ├── Astar.ipynb ├── MLP Classifier.py ├── MLPClassifier.py ├── Nqueens.py ├── Pandas-Operations.py ├── Python Programming Intro.ipynb ├── TicTacToe.py ├── Waterjug_auto (2).py ├── Waterjug_auto (3).py ├── Waterjug_auto.py ├── astarshort.ipynb ├── bfs.py ├── decision tree.py ├── decision_tree.py.py ├── diabetes.csv ├── gbfs.py ├── hangman_1.py ├── hangmanv1.py ├── hangmanv5.py ├── nlp.py ├── numpy.py ├── pandas.py ├── prolog_familytree.py ├── queen (1).py ├── queen (2).py ├── queen.py ├── queens.py └── waterjugmanual.py ├── uninformed search ├── bfs.py └── dfs.py └── waterjug code ├── waterjbfs.py ├── waterjug.pptx └── waterjugmanual.py /8puzzle/8puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/8puzzle/8puzzle.py -------------------------------------------------------------------------------- /8puzzle/gbfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/8puzzle/gbfs.py -------------------------------------------------------------------------------- /8puzzle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/8puzzle/main.py -------------------------------------------------------------------------------- /8puzzle/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/8puzzle/state.py -------------------------------------------------------------------------------- /A STAR/Astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/A STAR/Astar.py -------------------------------------------------------------------------------- /A STAR/astar graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/A STAR/astar graph.png -------------------------------------------------------------------------------- /A STAR/astarshort.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/A STAR/astarshort.ipynb -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Alzheimers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Alzheimers.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Arthritis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Arthritis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Asthma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Asthma.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Coronavirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Coronavirus.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Diabetes.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Epilepsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Epilepsy.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Glaucoma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Glaucoma.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Heart Disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Heart Disease.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Heat Stroke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Heat Stroke.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Hyperthyroidism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Hyperthyroidism.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Hypothermia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Hypothermia.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Jaundice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Jaundice.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Sinusitis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Sinusitis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease descriptions/Tuberculosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease descriptions/Tuberculosis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Alzheimers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Alzheimers.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Arthritis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Arthritis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Asthma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Asthma.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Coronavirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Coronavirus.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Diabetes.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Epilepsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Epilepsy.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Glaucoma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Glaucoma.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Heart Disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Heart Disease.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Heat Stroke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Heat Stroke.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Hyperthyroidism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Hyperthyroidism.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Hypothermia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Hypothermia.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Jaundice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Jaundice.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Sinusitis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Sinusitis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease symptoms/Tuberculosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease symptoms/Tuberculosis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Alzheimers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Alzheimers.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Arthritis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Arthritis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Asthma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Asthma.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Coronavirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Coronavirus.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Diabetes.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Epilepsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Epilepsy.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Glaucoma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Glaucoma.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Heart Disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Heart Disease.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Heat Stroke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Heat Stroke.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Hyperthyroidism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Hyperthyroidism.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Hypothermia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Hypothermia.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Jaundice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Jaundice.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Sinusitis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Sinusitis.txt -------------------------------------------------------------------------------- /Medical Expert System/Disease treatments/Tuberculosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/Disease treatments/Tuberculosis.txt -------------------------------------------------------------------------------- /Medical Expert System/__pycache__/greetings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/__pycache__/greetings.cpython-311.pyc -------------------------------------------------------------------------------- /Medical Expert System/__pycache__/greetings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/__pycache__/greetings.cpython-312.pyc -------------------------------------------------------------------------------- /Medical Expert System/diseases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/diseases.txt -------------------------------------------------------------------------------- /Medical Expert System/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/greetings.py -------------------------------------------------------------------------------- /Medical Expert System/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/Medical Expert System/main.py -------------------------------------------------------------------------------- /Medical Expert System/requirements.txt: -------------------------------------------------------------------------------- 1 | experta 2 | -------------------------------------------------------------------------------- /NLP/.ipynb_checkpoints/NLPtask-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/.ipynb_checkpoints/NLPtask-checkpoint.ipynb -------------------------------------------------------------------------------- /NLP/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /NLP/.ipynb_checkpoints/nlp-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/.ipynb_checkpoints/nlp-checkpoint.ipynb -------------------------------------------------------------------------------- /NLP/.ipynb_checkpoints/nlpspacyone-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/.ipynb_checkpoints/nlpspacyone-checkpoint.ipynb -------------------------------------------------------------------------------- /NLP/NLP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/NLP.ipynb -------------------------------------------------------------------------------- /NLP/NLPtask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/NLPtask.ipynb -------------------------------------------------------------------------------- /NLP/nlpspacyone.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/NLP/nlpspacyone.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/README.md -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Alzheimers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Alzheimers.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Arthritis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Arthritis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Asthma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Asthma.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Coronavirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Coronavirus.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Diabetes.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Epilepsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Epilepsy.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Glaucoma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Glaucoma.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Heart Disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Heart Disease.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Heat Stroke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Heat Stroke.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Hyperthyroidism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Hyperthyroidism.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Hypothermia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Hypothermia.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Jaundice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Jaundice.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Sinusitis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Sinusitis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease descriptions/Tuberculosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease descriptions/Tuberculosis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Alzheimers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Alzheimers.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Arthritis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Arthritis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Asthma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Asthma.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Coronavirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Coronavirus.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Diabetes.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Epilepsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Epilepsy.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Glaucoma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Glaucoma.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Heart Disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Heart Disease.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Heat Stroke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Heat Stroke.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Hyperthyroidism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Hyperthyroidism.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Hypothermia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Hypothermia.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Jaundice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Jaundice.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Sinusitis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Sinusitis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease symptoms/Tuberculosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease symptoms/Tuberculosis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Alzheimers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Alzheimers.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Arthritis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Arthritis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Asthma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Asthma.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Coronavirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Coronavirus.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Diabetes.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Epilepsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Epilepsy.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Glaucoma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Glaucoma.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Heart Disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Heart Disease.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Heat Stroke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Heat Stroke.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Hyperthyroidism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Hyperthyroidism.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Hypothermia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Hypothermia.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Jaundice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Jaundice.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Sinusitis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Sinusitis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/Disease treatments/Tuberculosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/Disease treatments/Tuberculosis.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/diseases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/diseases.txt -------------------------------------------------------------------------------- /case studies projects/expertsys/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/greetings.py -------------------------------------------------------------------------------- /case studies projects/expertsys/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/expertsys/main.py -------------------------------------------------------------------------------- /case studies projects/expertsys/requirements.txt: -------------------------------------------------------------------------------- 1 | experta 2 | -------------------------------------------------------------------------------- /case studies projects/gamebot tic tac toe/GamebotTicTacToe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/gamebot tic tac toe/GamebotTicTacToe.ipynb -------------------------------------------------------------------------------- /case studies projects/gamebot tic tac toe/TicTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/gamebot tic tac toe/TicTacToe.py -------------------------------------------------------------------------------- /case studies projects/gamebot tic tac toe/interactivegame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/gamebot tic tac toe/interactivegame.py -------------------------------------------------------------------------------- /case studies projects/gamebot tic tac toe/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/gamebot tic tac toe/readme.txt -------------------------------------------------------------------------------- /case studies projects/textclassification/textclassification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/case studies projects/textclassification/textclassification.ipynb -------------------------------------------------------------------------------- /classifierss/ML/ML notes/Unit-4MLl.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/ML/ML notes/Unit-4MLl.pptx -------------------------------------------------------------------------------- /classifierss/programs/.ipynb_checkpoints/MLPClassifier-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/.ipynb_checkpoints/MLPClassifier-checkpoint.ipynb -------------------------------------------------------------------------------- /classifierss/programs/.ipynb_checkpoints/MLPClassifierSMOTE-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/.ipynb_checkpoints/MLPClassifierSMOTE-checkpoint.ipynb -------------------------------------------------------------------------------- /classifierss/programs/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /classifierss/programs/HR_comma_sep.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/HR_comma_sep.csv -------------------------------------------------------------------------------- /classifierss/programs/MLPClassifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/MLPClassifier.ipynb -------------------------------------------------------------------------------- /classifierss/programs/MLPClassifierSMOTE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/MLPClassifierSMOTE.ipynb -------------------------------------------------------------------------------- /classifierss/programs/decisiontreesmall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/classifierss/programs/decisiontreesmall.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/.ipynb_checkpoints/diabetesclassf-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/.ipynb_checkpoints/diabetesclassf-checkpoint.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/.ipynb_checkpoints/diabetesentropyclassf-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/.ipynb_checkpoints/diabetesentropyclassf-checkpoint.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/diabetes.csv -------------------------------------------------------------------------------- /decisiontree/diabetes/diabetesclassf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/diabetesclassf.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/diabetesentropyclassf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/diabetesentropyclassf.ipynb -------------------------------------------------------------------------------- /decisiontree/iris/decisiontreesmall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/iris/decisiontreesmall.ipynb -------------------------------------------------------------------------------- /decisiontree/iris/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/iris/iris.csv -------------------------------------------------------------------------------- /decisiontree/studentt/decisiontreesmallstudent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/studentt/decisiontreesmallstudent.ipynb -------------------------------------------------------------------------------- /decisiontree/studentt/student_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/studentt/student_dataset.csv -------------------------------------------------------------------------------- /decisiontree/weightheight/decisiontreesmallweight.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/weightheight/decisiontreesmallweight.ipynb -------------------------------------------------------------------------------- /decisiontree/weightheight/weight_height_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/decisiontree/weightheight/weight_height_dataset.csv -------------------------------------------------------------------------------- /hangman game/manual/__pycache__/hangman_art.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/hangman game/manual/__pycache__/hangman_art.cpython-312.pyc -------------------------------------------------------------------------------- /hangman game/manual/__pycache__/hangman_words.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/hangman game/manual/__pycache__/hangman_words.cpython-312.pyc -------------------------------------------------------------------------------- /hangman game/manual/hangman_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/hangman game/manual/hangman_art.py -------------------------------------------------------------------------------- /hangman game/manual/hangman_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/hangman game/manual/hangman_words.py -------------------------------------------------------------------------------- /hangman game/manual/hangmanv5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/hangman game/manual/hangmanv5.py -------------------------------------------------------------------------------- /nqueens/queen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/nqueens/queen.py -------------------------------------------------------------------------------- /numpy/.ipynb_checkpoints/numpyml-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/numpy/.ipynb_checkpoints/numpyml-checkpoint.ipynb -------------------------------------------------------------------------------- /numpy/numpyml.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/numpy/numpyml.ipynb -------------------------------------------------------------------------------- /pandas/pandas_d/dataset/car-sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/pandas/pandas_d/dataset/car-sales.csv -------------------------------------------------------------------------------- /pandas/pandas_d/dataset/export_cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/pandas/pandas_d/dataset/export_cars.csv -------------------------------------------------------------------------------- /pandas/pandas_d/pandasnotebook/pandasfk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/pandas/pandas_d/pandasnotebook/pandasfk.ipynb -------------------------------------------------------------------------------- /pandas/pandasprogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/pandas/pandasprogram.ipynb -------------------------------------------------------------------------------- /prolog/cartypes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/cartypes.pl -------------------------------------------------------------------------------- /prolog/cartypes.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/cartypes.pl~ -------------------------------------------------------------------------------- /prolog/familytree.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/familytree.pl -------------------------------------------------------------------------------- /prolog/familytree.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/familytree.pl~ -------------------------------------------------------------------------------- /prolog/girlstudents.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/girlstudents.pl -------------------------------------------------------------------------------- /prolog/girlstudents.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/girlstudents.pl~ -------------------------------------------------------------------------------- /prolog/outputcartypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/outputcartypes.png -------------------------------------------------------------------------------- /prolog/outputgirlstudents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/outputgirlstudents.png -------------------------------------------------------------------------------- /prolog/prolog.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/prolog.pptx -------------------------------------------------------------------------------- /prolog/simplefacts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/prolog/simplefacts.pl -------------------------------------------------------------------------------- /prolog/simplefacts.pl~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonbasics/List.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/pythonbasics/List.ipynb -------------------------------------------------------------------------------- /pythonbasics/ai lab basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/pythonbasics/ai lab basics.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/requirements.txt -------------------------------------------------------------------------------- /students_contributions/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/1.png -------------------------------------------------------------------------------- /students_contributions/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/2.png -------------------------------------------------------------------------------- /students_contributions/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/3.png -------------------------------------------------------------------------------- /students_contributions/8puzzle (2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/8puzzle (2).py -------------------------------------------------------------------------------- /students_contributions/8puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/8puzzle.py -------------------------------------------------------------------------------- /students_contributions/A star.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/A star.ipynb -------------------------------------------------------------------------------- /students_contributions/AI_NUMPY.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/AI_NUMPY.ipynb -------------------------------------------------------------------------------- /students_contributions/Astar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Astar.ipynb -------------------------------------------------------------------------------- /students_contributions/MLP Classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/MLP Classifier.py -------------------------------------------------------------------------------- /students_contributions/MLPClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/MLPClassifier.py -------------------------------------------------------------------------------- /students_contributions/Nqueens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Nqueens.py -------------------------------------------------------------------------------- /students_contributions/Pandas-Operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Pandas-Operations.py -------------------------------------------------------------------------------- /students_contributions/Python Programming Intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Python Programming Intro.ipynb -------------------------------------------------------------------------------- /students_contributions/TicTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/TicTacToe.py -------------------------------------------------------------------------------- /students_contributions/Waterjug_auto (2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Waterjug_auto (2).py -------------------------------------------------------------------------------- /students_contributions/Waterjug_auto (3).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Waterjug_auto (3).py -------------------------------------------------------------------------------- /students_contributions/Waterjug_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/Waterjug_auto.py -------------------------------------------------------------------------------- /students_contributions/astarshort.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/astarshort.ipynb -------------------------------------------------------------------------------- /students_contributions/bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/bfs.py -------------------------------------------------------------------------------- /students_contributions/decision tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/decision tree.py -------------------------------------------------------------------------------- /students_contributions/decision_tree.py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/decision_tree.py.py -------------------------------------------------------------------------------- /students_contributions/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/diabetes.csv -------------------------------------------------------------------------------- /students_contributions/gbfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/gbfs.py -------------------------------------------------------------------------------- /students_contributions/hangman_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/hangman_1.py -------------------------------------------------------------------------------- /students_contributions/hangmanv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/hangmanv1.py -------------------------------------------------------------------------------- /students_contributions/hangmanv5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/hangmanv5.py -------------------------------------------------------------------------------- /students_contributions/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/nlp.py -------------------------------------------------------------------------------- /students_contributions/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/numpy.py -------------------------------------------------------------------------------- /students_contributions/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/pandas.py -------------------------------------------------------------------------------- /students_contributions/prolog_familytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/prolog_familytree.py -------------------------------------------------------------------------------- /students_contributions/queen (1).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/queen (1).py -------------------------------------------------------------------------------- /students_contributions/queen (2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/queen (2).py -------------------------------------------------------------------------------- /students_contributions/queen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/queen.py -------------------------------------------------------------------------------- /students_contributions/queens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/queens.py -------------------------------------------------------------------------------- /students_contributions/waterjugmanual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/students_contributions/waterjugmanual.py -------------------------------------------------------------------------------- /uninformed search/bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/uninformed search/bfs.py -------------------------------------------------------------------------------- /uninformed search/dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/uninformed search/dfs.py -------------------------------------------------------------------------------- /waterjug code/waterjbfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/waterjug code/waterjbfs.py -------------------------------------------------------------------------------- /waterjug code/waterjug.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/waterjug code/waterjug.pptx -------------------------------------------------------------------------------- /waterjug code/waterjugmanual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sainathch45/Artificial-Intelligence-Lab/HEAD/waterjug code/waterjugmanual.py --------------------------------------------------------------------------------