├── 8puzzle.py ├── 8puzzle ├── 8puzzle.py ├── gbfs.py ├── main.py └── state.py ├── ML └── ML notes │ └── Unit-4MLl.pptx ├── Python Programming Intro.ipynb ├── README.md ├── bfs.py ├── classifierss └── programs │ ├── MLPClassifier.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 ├── gbfs.py ├── hangman game └── manual │ ├── __pycache__ │ ├── hangman_art.cpython-312.pyc │ └── hangman_words.cpython-312.pyc │ ├── hangman_art.py │ ├── hangman_words.py │ └── hangmanv5.py ├── hangman_1.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 ├── 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 ├── students_contributions ├── AI_NUMPY.ipynb ├── Waterjug_auto.py ├── numpy.py └── prolog_familytree.py ├── uninformed search ├── bfs.py └── dfs.py └── waterjug code ├── waterjbfs.py ├── waterjug.pptx └── waterjugmanual.py /8puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/8puzzle.py -------------------------------------------------------------------------------- /8puzzle/8puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/8puzzle/8puzzle.py -------------------------------------------------------------------------------- /8puzzle/gbfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/8puzzle/gbfs.py -------------------------------------------------------------------------------- /8puzzle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/8puzzle/main.py -------------------------------------------------------------------------------- /8puzzle/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/8puzzle/state.py -------------------------------------------------------------------------------- /ML/ML notes/Unit-4MLl.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/ML/ML notes/Unit-4MLl.pptx -------------------------------------------------------------------------------- /Python Programming Intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/Python Programming Intro.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/README.md -------------------------------------------------------------------------------- /bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/bfs.py -------------------------------------------------------------------------------- /classifierss/programs/MLPClassifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/classifierss/programs/MLPClassifier.ipynb -------------------------------------------------------------------------------- /classifierss/programs/decisiontreesmall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/classifierss/programs/decisiontreesmall.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/.ipynb_checkpoints/diabetesclassf-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/.ipynb_checkpoints/diabetesclassf-checkpoint.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/.ipynb_checkpoints/diabetesentropyclassf-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/.ipynb_checkpoints/diabetesentropyclassf-checkpoint.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/diabetes.csv -------------------------------------------------------------------------------- /decisiontree/diabetes/diabetesclassf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/diabetesclassf.ipynb -------------------------------------------------------------------------------- /decisiontree/diabetes/diabetesentropyclassf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/diabetes/diabetesentropyclassf.ipynb -------------------------------------------------------------------------------- /decisiontree/iris/decisiontreesmall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/iris/decisiontreesmall.ipynb -------------------------------------------------------------------------------- /decisiontree/iris/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/iris/iris.csv -------------------------------------------------------------------------------- /decisiontree/studentt/decisiontreesmallstudent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/studentt/decisiontreesmallstudent.ipynb -------------------------------------------------------------------------------- /decisiontree/studentt/student_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/studentt/student_dataset.csv -------------------------------------------------------------------------------- /decisiontree/weightheight/decisiontreesmallweight.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/weightheight/decisiontreesmallweight.ipynb -------------------------------------------------------------------------------- /decisiontree/weightheight/weight_height_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/decisiontree/weightheight/weight_height_dataset.csv -------------------------------------------------------------------------------- /gbfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/gbfs.py -------------------------------------------------------------------------------- /hangman game/manual/__pycache__/hangman_art.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/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/sinifive/Artificial-Intelligence-Lab/HEAD/hangman game/manual/__pycache__/hangman_words.cpython-312.pyc -------------------------------------------------------------------------------- /hangman game/manual/hangman_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/hangman game/manual/hangman_art.py -------------------------------------------------------------------------------- /hangman game/manual/hangman_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/hangman game/manual/hangman_words.py -------------------------------------------------------------------------------- /hangman game/manual/hangmanv5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/hangman game/manual/hangmanv5.py -------------------------------------------------------------------------------- /hangman_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/hangman_1.py -------------------------------------------------------------------------------- /hangmanv5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/hangmanv5.py -------------------------------------------------------------------------------- /nqueens/queen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/nqueens/queen.py -------------------------------------------------------------------------------- /numpy/.ipynb_checkpoints/numpyml-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/numpy/.ipynb_checkpoints/numpyml-checkpoint.ipynb -------------------------------------------------------------------------------- /numpy/numpyml.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/numpy/numpyml.ipynb -------------------------------------------------------------------------------- /pandas/pandas_d/dataset/car-sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/pandas/pandas_d/dataset/car-sales.csv -------------------------------------------------------------------------------- /pandas/pandas_d/dataset/export_cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/pandas/pandas_d/dataset/export_cars.csv -------------------------------------------------------------------------------- /pandas/pandas_d/pandasnotebook/pandasfk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/pandas/pandas_d/pandasnotebook/pandasfk.ipynb -------------------------------------------------------------------------------- /prolog/cartypes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/cartypes.pl -------------------------------------------------------------------------------- /prolog/cartypes.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/cartypes.pl~ -------------------------------------------------------------------------------- /prolog/familytree.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/familytree.pl -------------------------------------------------------------------------------- /prolog/familytree.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/familytree.pl~ -------------------------------------------------------------------------------- /prolog/girlstudents.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/girlstudents.pl -------------------------------------------------------------------------------- /prolog/girlstudents.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/girlstudents.pl~ -------------------------------------------------------------------------------- /prolog/outputcartypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/outputcartypes.png -------------------------------------------------------------------------------- /prolog/outputgirlstudents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/outputgirlstudents.png -------------------------------------------------------------------------------- /prolog/prolog.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/prolog.pptx -------------------------------------------------------------------------------- /prolog/simplefacts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/prolog/simplefacts.pl -------------------------------------------------------------------------------- /prolog/simplefacts.pl~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonbasics/List.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/pythonbasics/List.ipynb -------------------------------------------------------------------------------- /pythonbasics/ai lab basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/pythonbasics/ai lab basics.ipynb -------------------------------------------------------------------------------- /students_contributions/AI_NUMPY.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/students_contributions/AI_NUMPY.ipynb -------------------------------------------------------------------------------- /students_contributions/Waterjug_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/students_contributions/Waterjug_auto.py -------------------------------------------------------------------------------- /students_contributions/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/students_contributions/numpy.py -------------------------------------------------------------------------------- /students_contributions/prolog_familytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/students_contributions/prolog_familytree.py -------------------------------------------------------------------------------- /uninformed search/bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/uninformed search/bfs.py -------------------------------------------------------------------------------- /uninformed search/dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/uninformed search/dfs.py -------------------------------------------------------------------------------- /waterjug code/waterjbfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/waterjug code/waterjbfs.py -------------------------------------------------------------------------------- /waterjug code/waterjug.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/waterjug code/waterjug.pptx -------------------------------------------------------------------------------- /waterjug code/waterjugmanual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinifive/Artificial-Intelligence-Lab/HEAD/waterjug code/waterjugmanual.py --------------------------------------------------------------------------------