index.html 6.0 KB
Newer Older
L
llxxxll 已提交
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>PaddlePaddle</title>
    <link rel="stylesheet" href="./css/home.css">
    <!-- Baidu Analystics -->
    <script>
        var _hmt = _hmt || [];
        (function() {
            var hm = document.createElement("script");
            hm.src = "//hm.baidu.com/hm.js?b9a314ab40d04d805655aab1deee08ba";
            var s = document.getElementsByTagName("script")[0];
            s.parentNode.insertBefore(hm, s);
        })();
    </script>
</head>
<body>   
<header class="site-header">
    <nav class="row">
        <div class="logo">
            <img src="./images/logo.png">
        </div>
        <nav class="top-nav">
            <ul class="site-links">
                <li><a class="active">Home</a></li>
                <li><a href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a></li>
                <li><a href="http://www.paddlepaddle.org/doc/howto/index_en.html" target="_blank">Documents</a></li>
                <li class="version-switcher">
                    <a>Version<i class="fa" aria-hidden="true"></i></a>
                    <ul>
                        <li><a href="http://www.paddlepaddle.org/release/0.10.0/doc/" target="_blank">0.10.0</a></li>
                        <li><a href="http://www.paddlepaddle.org/release_doc/0.9.0/doc/" target="_blank">0.9.0</a></li>
                    </ul>
                </li>
            </ul>
        </nav>
        <nav class="right-nav">
            <div class="language-switcher">
                <a href="./index.cn.html">中文</a>
            </div>
            <div class="github-fork">
                <a href="https://github.com/PaddlePaddle/Paddle" target="_blank">
                    <i class="fa fa-github" aria-hidden="true"></i>
                    <span>Github</span>
                </a>
            </div>
        </nav>
    </nav>
</header>
<section class="head-banner">
    <div class="row banner">
G
gangliao 已提交
53 54 55
        <h1>PaddlePaddle</h1>
        <h1>PArallel Distributed Deep LEarning</h1>
        <p>An Easy-to-use, Efficient, Flexible and Scalable Deep Learning Platform</p>
L
llxxxll 已提交
56 57 58 59 60 61 62 63
        <div>
            <a class="quick-start" href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a>
        </div>

    </div>
</section>
<section class="services">
    <div class="row">
G
gangliao 已提交
64 65
        <h2><span>Diverse Application Scenarios</span></h2>
        <p class="sub-title">Providing deep learning algorithms for 100+ products</p>
L
llxxxll 已提交
66 67 68 69 70 71 72
    </div>
    <div class="row">
        <div>
            <img class="service-icon" src="./images/service-1.png">
        </div>
        <div>
            <div class="service-desc">
G
gangliao 已提交
73 74
                <h3>Computer Vision</h3>
                <p>Using Convolutional Neural Networks (CNN) for image recognition and object detection</p>
L
llxxxll 已提交
75 76 77 78 79 80 81 82 83 84
                <div>
                    <a role="button" class="view-more" href="http://book.paddlepaddle.org/03.image_classification/index.html" target="_blank">Read more ></a>
                </div>
            </div>
        </div>
    </div>
    <div class="row">
        <div>
            <div class="service-desc">
                <h3>Natural Language Understanding</h3>
G
gangliao 已提交
85
                <p>Using Recurrent Neural Network (RNN) for sentiment analysis</p>
L
llxxxll 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
                <div>
                    <a role="button" class="view-more" href="http://book.paddlepaddle.org/06.understand_sentiment/index.html" target="_blank">Read more ></a>
                </div>
            </div>
        </div>
        <div>
            <img class="service-icon" src="./images/service-2.png">
        </div>
    </div>
    <div class="row">
        <div>
            <img class="service-icon" src="./images/service-3.png">
        </div>
        <div>
            <div class="service-desc">
G
gangliao 已提交
101 102
                <h3>Recommender System</h3>
                <p>Using Deep Learning on recommendation systems to help users find items</p>
L
llxxxll 已提交
103 104 105 106 107 108 109 110 111
                <div>
                    <a role="button" class="view-more" href="http://book.paddlepaddle.org/05.recommender_system/index.html" target="_blank">Read more ></a>
                </div>
            </div>
        </div>
    </div>
</section>
<section class="features">
    <div class="row">
G
gangliao 已提交
112
        <h2><span>Technical Features</span></h2>
L
llxxxll 已提交
113 114 115 116 117 118 119
    </div>
    <div class="row">
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-1.png">
            </div>
            <h3>Ease of use</h3>
G
gangliao 已提交
120
            <p>Provides an intuitive and flexible interface for loading data and specifying model structure.</p>
L
llxxxll 已提交
121 122 123 124 125 126
        </div>
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-2.png">
            </div>
            <h3>Flexibility</h3>
G
gangliao 已提交
127
            <p>Supports CNN, RNN and various variants and ease to configure complicated deep models.</p>
L
llxxxll 已提交
128 129 130 131 132 133
        </div>
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-3.png">
            </div>
            <h3>Efficiency</h3>
G
gangliao 已提交
134
            <p>Provides extremely optimized operations, memory recycling, network communication.</p>
L
llxxxll 已提交
135 136 137 138 139 140
        </div>
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-4.png">
            </div>
            <h3>Scalability</h3>
G
gangliao 已提交
141
            <p>Ease to scale heterogeneous computing resource and storage to accelerate training process.</p>
L
llxxxll 已提交
142 143 144 145 146
        </div>
    </div>
</section>
<section class="get-started">
    <div class="row">
G
gangliao 已提交
147 148
        <h2>PaddlePaddle</h2>
        <p>An Easy-to-use, Efficient, Flexible and Scalable Deep Learning Platform</p>
L
llxxxll 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161
        <div>
            <a role="button" class="quick-start" href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a>
        </div>
    </div>
</section>
<footer class="footer-nav">
    <div class="row">
        <p class="copyright">&copy;Copyright&nbsp;2017,&nbsp;PaddlePaddle&nbsp;developers.</p>
    </div>
</footer>
<script src="./js/common.bundle.js"></script>
<script src="./js/home.bundle.js"></script>
</body>
G
gangliao 已提交
162
</html>