Pavan Kumar Kotagorla's repositories
Artificial-Intelligence
This repository contains implementation of algorithms to solve 8-puzzle, 15-puzzle using various algorithms, Human VS Computer Tic-Tac-Toe
Movie-Recommender-Systems
This project contains implementation of collaborative filtering for building Movie Recommender Systems
MyTwitterScraper
Real-time twitter filter/scraper. Outputs to .csv file. Designed with low memory overhead in mind to allow running for extended periods.
Mini-IBM-Watson
This repository consists of the project I worked on for the course Natural Language Processing. I worked on this project with User:- "Pavvu". We have tried to build a Mini IBM Watson Question Answering machine.
Testing-Methods-Using-Java-Reflection
TestHarness.java automatically tests classes by instantiating them, selecting methods of these instantiated objects randomly or using some criteria, invoking them, and using the returned values as input parameters to invoke other methods. concept of reflection is used to code TestHarness.java, which takes the name of the Class Under Test (CUT) as its command line input. Using reflection, TestHarness.java determine all methods and fields that this CUT contain, instantiate it, use the input data that is supplied in some external file to set input parameters of the methods and fields of the instance, and invoke these methods. conducted a number of runs of your TestHarness.java using different input data and the number of objects, and collected information about the results of these runs i.e., what runs succeed and what fail, and what resulting values are produced.