├── .gitignore ├── A_search.ipynb ├── Agent_problem.ipynb ├── Best_First_search (1).ipynb ├── LICENSE ├── README.md ├── cryptarithmetic.ipynb ├── docs └── notebooks │ └── nlp │ └── nltk_preprocess.ipynb ├── week 1 ├── Knapsack.ipynb ├── N_Queens.ipynb ├── camel_problem.ipynb └── towerOfHanoi.ipynb ├── week 2 └── graph_coloring.ipynb ├── week 3 ├── best_first_search.ipynb ├── bfs.ipynb └── dfs.ipynb ├── week 6 ├── minimax.ipynb └── tic_tac_toe.ipynb ├── week 7 ├── Resolution │ ├── Input │ │ ├── input01.txt │ │ ├── input02.txt │ │ ├── input03.txt │ │ ├── input04.txt │ │ ├── input05.txt │ │ ├── input06.txt │ │ ├── input07.txt │ │ ├── input08.txt │ │ ├── input09.txt │ │ ├── input1.txt │ │ ├── input10.txt │ │ ├── input49.txt │ │ ├── input_1.txt │ │ ├── input_10.txt │ │ ├── input_11.txt │ │ ├── input_12.txt │ │ ├── input_13.txt │ │ ├── input_14.txt │ │ ├── input_15.txt │ │ ├── input_16.txt │ │ ├── input_17.txt │ │ ├── input_18.txt │ │ ├── input_19.txt │ │ ├── input_2.txt │ │ ├── input_20.txt │ │ ├── input_21.txt │ │ ├── input_22.txt │ │ ├── input_23.txt │ │ ├── input_24.txt │ │ ├── input_25.txt │ │ ├── input_26.txt │ │ ├── input_27.txt │ │ ├── input_28.txt │ │ ├── input_29.txt │ │ ├── input_3.txt │ │ ├── input_30.txt │ │ ├── input_31.txt │ │ ├── input_32.txt │ │ ├── input_33.txt │ │ ├── input_34.txt │ │ ├── input_35.txt │ │ ├── input_36.txt │ │ ├── input_37.txt │ │ ├── input_38.txt │ │ ├── input_39.txt │ │ ├── input_4.txt │ │ ├── input_40.txt │ │ ├── input_41.txt │ │ ├── input_42.txt │ │ ├── input_43.txt │ │ ├── input_44.txt │ │ ├── input_45.txt │ │ ├── input_46.txt │ │ ├── input_47.txt │ │ ├── input_48.txt │ │ ├── input_49.txt │ │ ├── input_5.txt │ │ ├── input_50.txt │ │ ├── input_6.txt │ │ ├── input_7.txt │ │ ├── input_8.txt │ │ └── input_9.txt │ ├── Output │ │ ├── output01.txt │ │ ├── output02.txt │ │ ├── output03.txt │ │ ├── output04.txt │ │ ├── output05.txt │ │ ├── output06.txt │ │ ├── output07.txt │ │ ├── output08.txt │ │ ├── output09.txt │ │ ├── output10.txt │ │ ├── output49.txt │ │ ├── output_1.txt │ │ ├── output_10.txt │ │ ├── output_11.txt │ │ ├── output_12.txt │ │ ├── output_13.txt │ │ ├── output_14.txt │ │ ├── output_15.txt │ │ ├── output_16.txt │ │ ├── output_17.txt │ │ ├── output_18.txt │ │ ├── output_19.txt │ │ ├── output_2.txt │ │ ├── output_20.txt │ │ ├── output_21.txt │ │ ├── output_22.txt │ │ ├── output_23.txt │ │ ├── output_24.txt │ │ ├── output_25.txt │ │ ├── output_26.txt │ │ ├── output_27.txt │ │ ├── output_28.txt │ │ ├── output_29.txt │ │ ├── output_3.txt │ │ ├── output_30.txt │ │ ├── output_31.txt │ │ ├── output_32.txt │ │ ├── output_33.txt │ │ ├── output_34.txt │ │ ├── output_35.txt │ │ ├── output_36.txt │ │ ├── output_37.txt │ │ ├── output_38.txt │ │ ├── output_39.txt │ │ ├── output_4.txt │ │ ├── output_40.txt │ │ ├── output_41.txt │ │ ├── output_42.txt │ │ ├── output_43.txt │ │ ├── output_44.txt │ │ ├── output_45.txt │ │ ├── output_46.txt │ │ ├── output_47.txt │ │ ├── output_48.txt │ │ ├── output_49.txt │ │ ├── output_5.txt │ │ ├── output_50.txt │ │ ├── output_6.txt │ │ ├── output_7.txt │ │ ├── output_8.txt │ │ └── output_9.txt │ ├── engine.py │ ├── input.txt │ └── output.txt ├── input_file.txt ├── resolution.py ├── unification-resolution-v2.py └── unification.py ├── week 8 └── animal.pl ├── week 9 └── Bayesian_Networks.ipynb ├── week11 ├── LinearRegression_week11.ipynb └── student_scores.csv ├── week12 └── ensembleModel_week12.ipynb ├── week13 ├── Copy of nltk_preprocess (1).ipynb └── quotes.txt └── week15 └── mnist_week14.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /A_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/A_search.ipynb -------------------------------------------------------------------------------- /Agent_problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/Agent_problem.ipynb -------------------------------------------------------------------------------- /Best_First_search (1).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/Best_First_search (1).ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /cryptarithmetic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/cryptarithmetic.ipynb -------------------------------------------------------------------------------- /docs/notebooks/nlp/nltk_preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/docs/notebooks/nlp/nltk_preprocess.ipynb -------------------------------------------------------------------------------- /week 1/Knapsack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 1/Knapsack.ipynb -------------------------------------------------------------------------------- /week 1/N_Queens.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 1/N_Queens.ipynb -------------------------------------------------------------------------------- /week 1/camel_problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 1/camel_problem.ipynb -------------------------------------------------------------------------------- /week 1/towerOfHanoi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 1/towerOfHanoi.ipynb -------------------------------------------------------------------------------- /week 2/graph_coloring.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 2/graph_coloring.ipynb -------------------------------------------------------------------------------- /week 3/best_first_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 3/best_first_search.ipynb -------------------------------------------------------------------------------- /week 3/bfs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 3/bfs.ipynb -------------------------------------------------------------------------------- /week 3/dfs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 3/dfs.ipynb -------------------------------------------------------------------------------- /week 6/minimax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 6/minimax.ipynb -------------------------------------------------------------------------------- /week 6/tic_tac_toe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 6/tic_tac_toe.ipynb -------------------------------------------------------------------------------- /week 7/Resolution/Input/input01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input01.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input02.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input03.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input04.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input05.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input06.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input07.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input08.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input09.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input1.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input10.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input49.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_1.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_10.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_11.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_12.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_13.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_14.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_15.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_16.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_17.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_18.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_19.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_2.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_20.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_21.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_22.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_23.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_24.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_25.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_26.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_27.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_28.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_29.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_3.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_30.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_31.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_32.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_33.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_34.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_35.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_36.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_37.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_38.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_39.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_4.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_40.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_41.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_42.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_43.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_44.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_45.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_46.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_47.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_48.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_49.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_5.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_50.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_6.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_7.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_8.txt -------------------------------------------------------------------------------- /week 7/Resolution/Input/input_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Input/input_9.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output01.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output02.txt: -------------------------------------------------------------------------------- 1 | TRUE FALSE 2 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output03.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output04.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output05.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output06.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE 3 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output07.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output08.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output09.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | -------------------------------------------------------------------------------- /week 7/Resolution/Output/output10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output10.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output49.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_1.txt: -------------------------------------------------------------------------------- 1 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_10.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_11.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_12.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_13.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_14.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_15.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_16.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_17.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_18.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_19.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_2.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_20.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_21.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_22.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_23.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_24.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_25.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_26.txt: -------------------------------------------------------------------------------- 1 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_27.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_28.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_29.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_3.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_30.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_31.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_32.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_33.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_34.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_35.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_36.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_37.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_38.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_39.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_4.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE 3 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_40.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_41.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_42.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_43.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_44.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_45.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_46.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_47.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_48.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_49.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_5.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE 3 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_50.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_6.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_7.txt: -------------------------------------------------------------------------------- 1 | FALSE 2 | TRUE -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/Output/output_8.txt -------------------------------------------------------------------------------- /week 7/Resolution/Output/output_9.txt: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE -------------------------------------------------------------------------------- /week 7/Resolution/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/engine.py -------------------------------------------------------------------------------- /week 7/Resolution/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/input.txt -------------------------------------------------------------------------------- /week 7/Resolution/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/Resolution/output.txt -------------------------------------------------------------------------------- /week 7/input_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/input_file.txt -------------------------------------------------------------------------------- /week 7/resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/resolution.py -------------------------------------------------------------------------------- /week 7/unification-resolution-v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/unification-resolution-v2.py -------------------------------------------------------------------------------- /week 7/unification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 7/unification.py -------------------------------------------------------------------------------- /week 8/animal.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 8/animal.pl -------------------------------------------------------------------------------- /week 9/Bayesian_Networks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week 9/Bayesian_Networks.ipynb -------------------------------------------------------------------------------- /week11/LinearRegression_week11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week11/LinearRegression_week11.ipynb -------------------------------------------------------------------------------- /week11/student_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week11/student_scores.csv -------------------------------------------------------------------------------- /week12/ensembleModel_week12.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week12/ensembleModel_week12.ipynb -------------------------------------------------------------------------------- /week13/Copy of nltk_preprocess (1).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week13/Copy of nltk_preprocess (1).ipynb -------------------------------------------------------------------------------- /week13/quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week13/quotes.txt -------------------------------------------------------------------------------- /week15/mnist_week14.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devangi2000/Artificial-Intelligence-Algorithms/HEAD/week15/mnist_week14.ipynb --------------------------------------------------------------------------------