-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathindex-dev.html
135 lines (117 loc) ยท 4.7 KB
/
index-dev.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
---
layout: default
background-class: home-page-background
body-class: homepage
display-news-banner: true
---
<div class="jumbotron jumbotron-fluid on-dark-background">
<div class="container">
<h1>From<br /> Research To<br />Production</h1>
<p class="lead">ํ๋กํ ํ์
๋ถํฐ ํ๋ก๋์
๊น์ง ๋น ๋ฅด๊ฒ ๋ง๋๋ ์คํ์์ค ๋จธ์ ๋ฌ๋ ํ๋ ์์ํฌ</p>
<a href="{{ site.baseurl }}/get-started" class="btn btn-lg with-right-arrow" data-cta="get-started">
์์ํ๊ธฐ
</a>
</div>
</div>
<div class="main-content-wrapper">
{% if page.display-news-banner == true %}
{% assign news = site.news | sort: "order" %}
<div id="news-items">
<div class="list container news-banner-container">
{% for news_item in news %}
<div class="news-banner-text">
{% include news_banner_info.html %}
</div>
{% endfor %}
</div>
<div class="pagination"></div>
</div>
{% else %}
<div class="no-banner"></div>
{% endif %}
<div class="container homepage-feature-module key-features-module">
<div class="row">
<div class="col-md-12">
<h2>์ฃผ์ ๊ธฐ๋ฅ ๋ฐ ์ฑ๋ฅ</h2>
<a href="{{ site.baseurl }}/features" class="btn btn-lg with-right-arrow module-button">
๋ชจ๋ ๊ธฐ๋ฅ ๋ณด๊ธฐ
</a>
</div>
</div>
<div class="row key-features-boxes">
{% assign features = site.features | where: "featured-home", true | sort: 'order' %}
{% for feature in features %}
<div class="col-md-3 key-feature-box">
<h5>{{ feature.title }}</h5>
<p>{{ feature.summary-home }}</p>
</div>
{% endfor %}
</div>
</div>
{% include quick_start_module.html %}
<div class="container homepage-feature-module community-module">
<div class="row">
<div class="col-md-12">
<h2>์ปค๋ฎค๋ํฐ</h2>
<h5>์ปค๋ฎค๋ํฐ์ ๊ฒ์๋ ์๋ก์ด AI ๋ด์ค์ ์ฝ์๊ฑฐ๋ฆฌ๋ค์ ์ดํด๋ณด์ธ์!</h5>
<a href="{{ site.external_urls.site_community }}news/c/14" class="btn btn-lg with-right-arrow module-button" >์ปค๋ฎค๋ํฐ ๋ฐ๋ก ๊ฐ๊ธฐ</a>
</div>
</div>
<div class="row community">
<div class="col-md-12">
<script src="{{ site.external_urls.site_community }}javascripts/embed-topics.js"></script>
<d-topics-list discourse-url="{{ site.external_urls.site_community }}" template="complete" category="14" per-page="11"></d-topics-list>
</div>
</div>
</div>
<div class="homepage-feature-module community-module container-fluid">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Ecosystem </h2>
<h5>Feature Projects</h5>
<a href="{{ site.external_urls.org_www }}/ecosystem" class="btn btn-lg with-right-arrow module-button" >
๋ชจ๋ ํ๋ก์ ํธ ๋ณด๊ธฐ
</a>
</div>
<div class="col-md-8">
<p class="h2-subheadline">Explore a rich ecosystem of libraries, tools, and more to support development.</p>
</div>
</div>
<div class="row ecosystem-row">
<div class="col-md-4">
<div class="card ecosystem-card">
<a href="{{ site.external_urls.org_www }}/ecosystem/Captum/">
<div class="card-body ">
<h4>Captum</h4>
<p class="card-summary">Captum (โcomprehensionโ in Latin) is an open source, extensible library for model interpretability built on PyTorch.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="card ecosystem-card">
<a href="{{ site.external_urls.org_www }}/ecosystem/pytorch-geometric/">
<div class="card-body ">
<h4>PyTorch Geometric</h4>
<p class="card-summary">PyTorch Geometric is a library for deep learning on irregular input data such as graphs, point clouds, and manifolds.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="card ecosystem-card">
<a href="{{ site.external_urls.org_www }}/ecosystem/skorch/">
<div class="card-body ">
<h4>skorch</h4>
<p class="card-summary">skorch is a high-level library for PyTorch that provides full scikit-learn compatibility.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Load JS for pagination -->
<script src="//cdnjs.cloudflare.com/ajax/libs/list.js/1.5.0/list.min.js"></script>
<script list-id="news-items" display-count="1" pagination="true" src="{{ site.baseurl }}/assets/filter-hub-tags.js"></script>