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