1 / 7

Simple Plagiarism Detection

Simple Plagiarism Detection. Duy Nguyen Ramakrishna Bhandage. Problem Definition. Implement a simple application to determine if a suspect text file is plagiarized by comparing it with the set of corpora in the given library (set of text files).

Download Presentation

Simple Plagiarism Detection

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Simple Plagiarism Detection Duy Nguyen Ramakrishna Bhandage

  2. Problem Definition • Implement a simple application to determine if a suspect text file is plagiarized by comparing it with the set of corpora in the given library (set of text files). • The suspect file and corpora are in simple text format (*.txt) • Algorithms used to detect the plagiarism:  • LCSS • KMP • Rabin-Karp • Compare the performance of algorithms used in the implementation

  3. Major Components • SimplePlagiarism: • detect() • getRunningTime() • onAlgorithmStarted() and onAlgorithmEnded() • SimplePlagiarism subclasses: • LCS: getLCSSLength() • KMP:  • tableBuild() • match() • RabinKarp:  • match()  • Utility: • getParagraphs() • getSentences() • normalizeText()

  4. Major Components (cont.)User Interface

  5. Demo

  6. Running time comparison A chart will go here….

  7. Thank you!

More Related