-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_me.html
87 lines (73 loc) · 4.6 KB
/
about_me.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
<!DOCTYPE HTML>
<!--
Phantom by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>About Me</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" />
<link rel="stylesheet" href="./assets/css/academicons.min.css" />
<noscript><link rel="stylesheet" href="./assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Nav -->
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
</ul>
</nav>
</div>
</header>
<!-- Menu -->
<nav id="menu">
<h2>Menu</h2>
<ul>
<li><a href="./index.html">Back to Home</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<div class="inner">
<h1>About Me</h1>
<p>I am originally from Cambridge, Massachusetts, but grew up in Ann Arbor, Michigan. I've been passionate about mathematics and computer programming for most of my life, and developed an interest in robotics in high school as a member of FIRST Robotics Team 3322.</p>
<p>During my undergraduate studies, I worked as a research assistant at the <a href="http://progress.eecs.umich.edu/">Laboratory for Progress</a>, under the direction of Professor <a href="https://ocj.name/">Chad Jenkins</a>. Our research focused on manifold learning and its applications in robotics -- for example, we developed a technique to make manifold learning more robust in the presence of data noise. This technique was the basis for my first publication, <a href="https://ieeexplore.ieee.org/document/9166624"><i>TSBP: Tangent Space Belief Propagation for Manifold Learning</i></a>, which appeared in Robotics and Automation: Letters (RA-L).</p>
<p>Now, at MIT, I'm advised by <a href="https://groups.csail.mit.edu/locomotion/russt.html">Russ Tedrake</a>, and work in the <a href="https://groups.csail.mit.edu/locomotion/index.html">Robot Locomotion Group</a>. Our research focuses on motion planning, primarily for robotic manipulation tasks. I'm particularly interested in developing novel algorithms that exploit underlying geometric structure to help robots move faster, safer, and more elegantly.</p>
<p>Outside of the classroom (and outside of the lab), music is an important part of my life. I played cymbals for the Michigan Marching Band from 2017 through 2021, performing a variety of classical and contemporary music before crowds of over 110,000. You can find a short playlist with videos of some of my favorite performances <a href="https://www.youtube.com/playlist?list=PLU6BDl-vm1jS_ETLVZYVf2h0h-OaPNyOc">here</a>. I was the Cymbal Section Rank Leader in 2020 and 2021 -- my responsibilities included running rehearsals, training and evaluating new members, writing show music, and designing visual performances. Besides marching band, I was also a member of the Michigan Hockey Pep Band, and participated in concert percussion chamber ensembles. I also play piano.</p>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<section>
<h2>Contact</h2>
<ul class="icons">
<li><a href="mailto:hello@tommycohn.com" target="_blank" class="icon solid style2 fa-envelope"><span class="label">Email</span></a></li>
<li><a href="https://scholar.google.com/citations?user=1Eg4C90AAAAJ" class="plainicon brands style2 ai ai-google-scholar"><span class="label">Google Scholar</span></a></li>
<li><a href="https://github.com/cohnt/" class="icon brands style2 fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/thomas-cohn-hello/" class="icon brands style2 fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a href="https://blog.tommycohn.com/" class="icon solid style2 fa-blog"><span class="label">Research Blog</span></a></li>
</ul>
</section>
<ul class="copyright">
<li>© Thomas Cohn. All rights reserved</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="./assets/js/jquery.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>