-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.html
165 lines (140 loc) · 5.44 KB
/
project.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE HTML>
<!--
Forty by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Projects</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<!-- Note: The "styleN" class below should match that of the banner element. -->
<header id="header" class="alt style2">
<a href="index.html" class="logo"><strong>Home</strong></a>
<nav>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="profile.html">Personal info</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="non_academics.html">ExtraCirculars</a></li>
<li><a href="achievemnts.html">Achievements</a></li>
</ul>
</nav>
<!-- Banner -->
<!-- Note: The "styleN" class below should match that of the header element. -->
<section id="banner" class="style7">
<div class="inner">
<span class="image">
<img src="images/project_background2.jpg" alt="" />
</span>
<header class="major">
<h1>Projects</h1>
</header>
</div>
</section>
<!-- Main -->
<div id="main">
<!-- One -->
<!-- Two -->
<section id="two" class="spotlights">
<section>
<a href="" class="image">
<img src="images/ml.jpeg" alt="" data-position="center center" />
</a>
<div class="content">
<div class="inner">
<header class="major">
<h3>Summer Internship <br>in Machine Learning</h3>
</header>
<p>This was my first step towards Machine Learning. Objective of this Internship was to classify the text into
Fiction and Non-Fiction based on different properties of language using logistic regression model.
</p>
<h4>Skills Acquired</h4>
1)Basics of Machine Learning and regression models<br>
2)Python<br>
</div>
</div>
</section>
<section>
<a href="" class="image">
<img src="images/fictometer.png" alt="" data-position="top center" />
</a>
<div class="content">
<div class="inner">
<header class="major">
<h3>Fictometer</h3>
</header>
<p>Member of the team in the development of the website "Fictometer".This tool measures the imaginative writing styles in a given English text, using a Machine Learning algorithm.
Texts which are more imaginative than a certain threshold are classified as Fiction and those below it are classified as Non-fiction.
<h4>Skills Acquired</h4>
1)Basics of Machine Learning and regression models<br>
2)Python<br>
3)Web-Design using Django and Flask<br>
4)HTML<br></p>
<ul class="actions">
<li><a href="http://fictometer.com/" class="button">Fictometer</a></li>
</ul>
</div>
</div>
</section>
<section>
<a href="" class="image">
<img src="images/news.jpg" alt="" data-position="25% 25%" />
</a>
<div class="content">
<div class="inner">
<header class="major">
<h3>Newschase</h3>
</header>
<p>Backend developer of the NEWSCHASE mobile app. NewsChase is AI based app that measures the imaginative writing styles in a given news article, using a Machine Learning algorithm. The app classifies the news articles in three categories, namely:<br>
- Reliable: if the article is written in an informative style.<br>
- Alright: if the article has moderate use of imaginative writing styles.<br>
- Beware: if the article may have manipulative content. Reading with caution is advisable.<br>
This news app does not check for the factual correctness of the news.
The classification is about the writing style of the author.
<h4>Skills Acquired</h4>
1)Mobile App development using Flutter<br>
2)Usage of database like Google Firestore
</p>
<ul class="actions">
<li><a href="https://newschase.github.io/" class="button">NewsChase</a></li>
</ul>
</div>
</div>
</section>
</section>
<!-- Three -->
</div>
<!-- Contact -->
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="copyright">
<li>© Koushik</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>