|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +background-class: home-page-background |
| 4 | +body-class: homepage |
| 5 | +display-news-banner: true |
| 6 | +--- |
| 7 | + |
| 8 | +<div class="jumbotron jumbotron-fluid on-dark-background"> |
| 9 | + <div class="container"> |
| 10 | + <h1>From<br /> Research To<br />Production</h1> |
| 11 | + <p class="lead">프로토타입부터 프로덕션까지 빠르게 만드는 오픈소스 머신러닝 프레임워크</p> |
| 12 | + <a href="{{ site.baseurl }}/get-started" class="btn btn-lg with-right-arrow" data-cta="get-started"> |
| 13 | + 시작하기 |
| 14 | + </a> |
| 15 | + </div> |
| 16 | +</div> |
| 17 | + |
| 18 | +<div class="main-content-wrapper"> |
| 19 | + |
| 20 | + {% if page.display-news-banner == true %} |
| 21 | + |
| 22 | + {% assign news = site.news | sort: "order" %} |
| 23 | + |
| 24 | + <div id="news-items"> |
| 25 | + <div class="list container news-banner-container"> |
| 26 | + {% for news_item in news %} |
| 27 | + <div class="news-banner-text"> |
| 28 | + {% include news_banner_info.html %} |
| 29 | + </div> |
| 30 | + {% endfor %} |
| 31 | + </div> |
| 32 | + <div class="pagination"></div> |
| 33 | + </div> |
| 34 | + {% else %} |
| 35 | + <div class="no-banner"></div> |
| 36 | + {% endif %} |
| 37 | + |
| 38 | + <div class="container homepage-feature-module key-features-module"> |
| 39 | + <div class="row"> |
| 40 | + <div class="col-md-12"> |
| 41 | + <h2>주요 기능 및 성능</h2> |
| 42 | + |
| 43 | + <a href="{{ site.baseurl }}/features" class="btn btn-lg with-right-arrow module-button"> |
| 44 | + 모든 기능 보기 |
| 45 | + </a> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div class="row key-features-boxes"> |
| 50 | + {% assign features = site.features | where: "featured-home", true | sort: 'order' %} |
| 51 | + |
| 52 | + {% for feature in features %} |
| 53 | + <div class="col-md-3 key-feature-box"> |
| 54 | + <h5>{{ feature.title }}</h5> |
| 55 | + <p>{{ feature.summary-home }}</p> |
| 56 | + </div> |
| 57 | + {% endfor %} |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + |
| 61 | + {% include quick_start_module.html %} |
| 62 | + |
| 63 | + <div class="container homepage-feature-module community-module"> |
| 64 | + <div class="row"> |
| 65 | + <div class="col-md-12"> |
| 66 | + <h2>커뮤니티</h2> |
| 67 | + <h5>커뮤니티에 게시된 새로운 AI 뉴스와 읽을거리들을 살펴보세요!</h5> |
| 68 | + <a href="{{ site.external_urls.site_community }}news/c/14" class="btn btn-lg with-right-arrow module-button" >커뮤니티 바로 가기</a> |
| 69 | + </div> |
| 70 | + </div> |
| 71 | + <div class="row community"> |
| 72 | + <div class="col-md-12"> |
| 73 | + <script src="{{ site.external_urls.site_community }}javascripts/embed-topics.js"></script> |
| 74 | + <d-topics-list discourse-url="{{ site.external_urls.site_community }}" template="complete" category="14" per-page="11"></d-topics-list> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + |
| 79 | + <div class="homepage-feature-module community-module container-fluid"> |
| 80 | + <div class="container"> |
| 81 | + <div class="row"> |
| 82 | + <div class="col-md-12"> |
| 83 | + <h2>Ecosystem </h2> |
| 84 | + <h5>Feature Projects</h5> |
| 85 | + |
| 86 | + <a href="{{ site.external_urls.org_www }}/ecosystem" class="btn btn-lg with-right-arrow module-button" > |
| 87 | + 모든 프로젝트 보기 |
| 88 | + </a> |
| 89 | + |
| 90 | + </div> |
| 91 | + <div class="col-md-8"> |
| 92 | + <p class="h2-subheadline">Explore a rich ecosystem of libraries, tools, and more to support development.</p> |
| 93 | + </div> |
| 94 | + </div> |
| 95 | + |
| 96 | + <div class="row ecosystem-row"> |
| 97 | + <div class="col-md-4"> |
| 98 | + <div class="card ecosystem-card"> |
| 99 | + <a href="{{ site.external_urls.org_www }}/ecosystem/Captum/"> |
| 100 | + <div class="card-body "> |
| 101 | + <h4>Captum</h4> |
| 102 | + <p class="card-summary">Captum (“comprehension” in Latin) is an open source, extensible library for model interpretability built on PyTorch.</p> |
| 103 | + </div> |
| 104 | + </a> |
| 105 | + </div> |
| 106 | + </div> |
| 107 | + <div class="col-md-4"> |
| 108 | + <div class="card ecosystem-card"> |
| 109 | + <a href="{{ site.external_urls.org_www }}/ecosystem/pytorch-geometric/"> |
| 110 | + <div class="card-body "> |
| 111 | + <h4>PyTorch Geometric</h4> |
| 112 | + <p class="card-summary">PyTorch Geometric is a library for deep learning on irregular input data such as graphs, point clouds, and manifolds.</p> |
| 113 | + </div> |
| 114 | + </a> |
| 115 | + </div> |
| 116 | + </div> |
| 117 | + <div class="col-md-4"> |
| 118 | + <div class="card ecosystem-card"> |
| 119 | + <a href="{{ site.external_urls.org_www }}/ecosystem/skorch/"> |
| 120 | + <div class="card-body "> |
| 121 | + <h4>skorch</h4> |
| 122 | + <p class="card-summary">skorch is a high-level library for PyTorch that provides full scikit-learn compatibility.</p> |
| 123 | + </div> |
| 124 | + </a> |
| 125 | + </div> |
| 126 | + </div> |
| 127 | + </div> |
| 128 | + |
| 129 | + </div> |
| 130 | +</div> |
| 131 | + |
| 132 | +<!-- Load JS for pagination --> |
| 133 | + |
| 134 | +<script src="//cdnjs.cloudflare.com/ajax/libs/list.js/1.5.0/list.min.js"></script> |
| 135 | +<script list-id="news-items" display-count="1" pagination="true" src="{{ site.baseurl }}/assets/filter-hub-tags.js"></script> |
0 commit comments