-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
39 lines (35 loc) · 1.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Copy Cats</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="conteneur">
<div id="header">Copy Cats: Plagiarism Detection</div>
<div id="haut">
<ul class="menuhaut">
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="about_us.html">About the Copy Cats</a></li>
<li><a href="code.html">Code</a></li>
</ul>
</div>
<div id="centre">
<h1>Copy Cats: Plagiarism Detection</h1>
<p>
We are the Copy Cats, a group of six computer science majors at Carleton College. Our senior comprehensive project (Comps)
was to automate the detection of plagiarism. Given a suspicious document (and perhaps other "source" documents
to compare to), we tried to identify the sections that were plagiarized (or likely to have been).
Using a combination of topics from linguistics, natural language processing, probability, data structures,
and many more areas, we built a tool to aid in the process of identifying plagiarism.
</p>
<p>
To learn more, check out our <a href="project.html">project</a> page,
<a href="about_us.html">about us</a>, or see our <a href="code.html">code</a>.
</p>
</div>
</div>
</body>
</html>