forked from cmu-catalyst/cmu-catalyst.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (89 loc) · 3.57 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
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
---
layout: default
title: Home
notitle: true
# groups of columns of {roles: list, width: num, image: bool}
role-tables:
- - roles: [faculty, postdoc, staff]
width: 4
image: true
- roles: [grad]
width: 8
image: true
- - roles: [masters, collab, ugrad]
width: 5
image: true
- roles: [ugrad-alum, alum]
width: 7
image: true
---
<div class="jumbotron">
<p>
<b>Catalyst</b> is an interdisciplinary machine learning and systems research group
exploring problems to automate learning systems.
Our research spanning multiple layers of the machine learning and system stack.
Our group is a collaboration between researchers from the
<a href="https://ml.cmu.edu/">Machine Learning Department</a>,
<a href="https://cs.cmu.edu/">Computer Science Department</a> and
<a href="https://ece.cmu.edu/">Electrical & Computer Engineering Department</a>
at the <a href="https://cmu.edu/">Carnegie Mellon University</a>.
</p>
</div>
<!--
<section>
<h2>News</h2>
<ul class="news list-unstyled">
{% for post in site.posts limit: site.front_page_news %}
{% include news-item.html item=post %}
{% endfor %}
</ul>
{% assign numposts = site.posts | size %}
{% if numposts >= 1 %}
<p>
<span class="fa fa-fw fa-history"></span>
<a href="{{ site.base }}/blog.html">Older posts…</a>
</p>
{% endif %}
</section>
--->
<section>
<h2>Research</h2>
<div class="card-columns">
{% comment %}
Sort the projects by date, putting those without dates last
{% endcomment %}
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
{% assign projects_by_date = projects_by_date | reverse %}
{% for p in projects_by_date %}
{% if p.status != "inactive" %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>
</section>
<section>
<h2>Mission</h2>
The rapid advance in ML models and ML-specific hardware makes it increasingly challenging to build
efficient and scalable learning systems that can take full advantage of the performance capability of modern hardware and runtime environments.
Today's ML systems heavily rely on human effort to optimize the training and deployment of ML models on specific target platforms.
Unlike conventional application domains, learning systems need to address a continuously growing complexity and diversity
in machine learning models, hardware backends, and runtime time environments.
Our response to this unique challenge in ML systems is <b>Catalyst</b> (CMU automated learning systems group), a joint research group
across the area of machine learning, systems, programming languages, and computer architecture.
Our mission is to build ML algorithms and learning systems that automate cross stack optimizations by leveraging mathematical and statistical properties of ML computations
and by co-designing systems, hardware, and ML algorithms.
</section>
<div id="people">
<h2>People</h2>
{% for role-table in page.role-tables %}
<section class="people row justify-content-between">
{% for role-column in role-table %}
<div class="col-md-{{ role-column.width }}">
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
{% endfor %}
</div>
{% endfor %}
</section>
{% endfor %}
</div>