index.cn.html 6.9 KB
Newer Older
L
llxxxll 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!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>
L
LiuYongFeng 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
<script type="text/javascript">
    function browserRedirect() {
        var sUserAgent= navigator.userAgent.toLowerCase();
        var bIsIpad= sUserAgent.match(/ipad/i) == "ipad";
        var bIsIphoneOs= sUserAgent.match(/iphone os/i) == "iphone os";
        var bIsMidp= sUserAgent.match(/midp/i) == "midp";
        var bIsUc7= sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
        var bIsUc= sUserAgent.match(/ucweb/i) == "ucweb";
        var bIsAndroid= sUserAgent.match(/android/i) == "android";
        var bIsCE= sUserAgent.match(/windows ce/i) == "windows ce";
        var bIsWM= sUserAgent.match(/windows mobile/i) == "windows mobile";

        if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
            window.location.href = 'http://www.paddlepaddle.org/mobile/index.html';
        } 
    }
    browserRedirect();
</script>
L
llxxxll 已提交
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
<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">主页</a></li>
                <li><a href="http://book.paddlepaddle.org/index.cn.html" target="_blank">快速开始</a></li>
                <li><a href="http://www.paddlepaddle.org/doc_cn/howto/index_cn.html" target="_blank">文档中心</a></li>
                <li class="version-switcher">
                    <a>版本<i class="fa" aria-hidden="true"></i></a>
                    <ul>
                        <li><a href="http://www.paddlepaddle.org/release/0.10.0/doc_cn/" target="_blank">0.10.0</a></li>
                        <li><a href="http://www.paddlepaddle.org/release_doc/0.9.0/doc_cn/" target="_blank">0.9.0</a></li>
                    </ul>
                </li>
            </ul>
        </nav>
        <nav class="right-nav">
            <div class="language-switcher">
                <a href="./index.html">English</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">
        <h1>易学易用的分布式深度学习平台</h1>
        <p>正在为100+项产品提供深度学习算法支持</p>
        <div>
            <a class="quick-start" href="http://book.paddlepaddle.org/index.cn.html" target="_blank">快速入门</a>
        </div>

    </div>
</section>
<section class="services">
    <div class="row">
        <h2><span>丰富的算法服务</span></h2>
        <p class="sub-title">易用、高效、灵活、扩展性好</p>
    </div>
    <div class="row">
        <div>
            <img class="service-icon" src="./images/service-1.png">
        </div>
        <div>
            <div class="service-desc">
                <h3>机器视觉</h3>
                <p>卷积神经网络可以识别图像中的主要对象,并输出分类结果</p>
                <div>
                    <a role="button" class="view-more" href="http://book.paddlepaddle.org/03.image_classification/index.cn.html" target="_blank">查看更多 ></a>
                </div>
            </div>
        </div>
    </div>
    <div class="row">
        <div>
            <div class="service-desc">
                <h3>自然语言理解</h3>
                <p>利用LSTM网络从IMDB电影评论的中分析出评论者情绪的正面和负面</p>
                <div>
                    <a role="button" class="view-more" href="http://book.paddlepaddle.org/06.understand_sentiment/index.cn.html" target="_blank">查看更多 ></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">
L
LiuYongFeng 已提交
118
                <h3>推荐系统</h3>
L
llxxxll 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
                <p>分析用户特征、电影特征、点评分数,预测新用户对不同电影的点评分数</p>
                <div>
                    <a role="button" class="view-more" href="http://book.paddlepaddle.org/05.recommender_system/index.cn.html" target="_blank">查看更多 ></a>
                </div>
            </div>
        </div>
    </div>
</section>
<section class="features">
    <div class="row">
        <h2><span>技术和服务优势</span></h2>
    </div>
    <div class="row">
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-1.png">
            </div>
            <h3>易用性</h3>
            <p>为用户提供了直观、灵活的数据接口和模型配置接口</p>
        </div>
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-2.png">
            </div>
            <h3>灵活性</h3>
            <p>支持CNN、RNN等多种神经网络结构和优化算法。简单书写配置文件即可实现复杂模型</p>
        </div>
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-3.png">
            </div>
            <h3>高效性</h3>
            <p>在计算、存储、通信、架构等方面都做了高效优化,充分发挥各种资源的性能</p>
        </div>
        <div class="feature-desc">
            <div class="feature-icon">
                <img src="./images/feature-4.png">
            </div>
            <h3>扩展性</h3>
            <p>全面支持多核、多GPU、多机环境。轻松应对大规模数据训练需求</p>
        </div>
    </div>
</section>
<section class="get-started">
    <div class="row">
        <h2>现在开始使用PaddlePaddle</h2>
        <p>易学易用的分布式深度学习平台</p>
        <div>
            <a role="button" class="quick-start" href="http://book.paddlepaddle.org/index.cn.html" target="_blank">快速入门</a>
        </div>
    </div>
</section>
<footer class="footer-nav">
    <div class="row">
            <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>
L
LiuYongFeng 已提交
180
</html>