提交 1d808a99 编写于 作者: L LiuYongFeng 提交者: GitHub

update text

上级 8927fa06
...@@ -16,6 +16,24 @@ ...@@ -16,6 +16,24 @@
</script> </script>
</head> </head>
<body> <body>
<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>
<header class="site-header"> <header class="site-header">
<nav class="row"> <nav class="row">
<div class="logo"> <div class="logo">
...@@ -27,7 +45,7 @@ ...@@ -27,7 +45,7 @@
<li><a href="http://book.paddlepaddle.org/index.cn.html" target="_blank">快速开始</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><a href="http://www.paddlepaddle.org/doc_cn/howto/index_cn.html" target="_blank">文档中心</a></li>
<li class="version-switcher"> <li class="version-switcher">
<a>版本<i class="fa" aria-hidden="true"></i></a> <a>版本<i class="fa" aria-hidden="true"></i>&nbsp;&nbsp;&nbsp;&nbsp;</a>
<ul> <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/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> <li><a href="http://www.paddlepaddle.org/release_doc/0.9.0/doc_cn/" target="_blank">0.9.0</a></li>
...@@ -70,7 +88,7 @@ ...@@ -70,7 +88,7 @@
<div> <div>
<div class="service-desc"> <div class="service-desc">
<h3>机器视觉</h3> <h3>机器视觉</h3>
<p>卷积神经网络可以识别图像中的主要对象,并输出分类结果</p> <p>卷积神经网络可以识别图像中的主要对象并输出分类结果</p>
<div> <div>
<a role="button" class="view-more" href="http://book.paddlepaddle.org/03.image_classification/index.cn.html" target="_blank">查看更多 ></a> <a role="button" class="view-more" href="http://book.paddlepaddle.org/03.image_classification/index.cn.html" target="_blank">查看更多 ></a>
</div> </div>
...@@ -97,8 +115,8 @@ ...@@ -97,8 +115,8 @@
</div> </div>
<div> <div>
<div class="service-desc"> <div class="service-desc">
<h3>搜索引擎排序</h3> <h3>推荐系统</h3>
<p>分析用户特征、电影特征、点评分数,预测新用户对不同电影的点评分数</p> <p>分析用户特征、电影特征、点评分数,预测新用户对不同电影的打分</p>
<div> <div>
<a role="button" class="view-more" href="http://book.paddlepaddle.org/05.recommender_system/index.cn.html" target="_blank">查看更多 ></a> <a role="button" class="view-more" href="http://book.paddlepaddle.org/05.recommender_system/index.cn.html" target="_blank">查看更多 ></a>
</div> </div>
...@@ -137,7 +155,7 @@ ...@@ -137,7 +155,7 @@
<img src="./images/feature-4.png"> <img src="./images/feature-4.png">
</div> </div>
<h3>扩展性</h3> <h3>扩展性</h3>
<p>全面支持多核、多GPU、多机环境。轻松应对大规模数据训练需求</p> <p>全面支持多核、多GPU、多机环境。轻松应对大规模训练需求</p>
</div> </div>
</div> </div>
</section> </section>
...@@ -159,4 +177,4 @@ ...@@ -159,4 +177,4 @@
<script src="./js/common.bundle.js"></script> <script src="./js/common.bundle.js"></script>
<script src="./js/home.bundle.js"></script> <script src="./js/home.bundle.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="zh-cn">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>PaddlePaddle</title> <title>PaddlePaddle</title>
...@@ -15,7 +15,25 @@ ...@@ -15,7 +15,25 @@
})(); })();
</script> </script>
</head> </head>
<body> <body>
<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>
<header class="site-header"> <header class="site-header">
<nav class="row"> <nav class="row">
<div class="logo"> <div class="logo">
...@@ -25,7 +43,7 @@ ...@@ -25,7 +43,7 @@
<ul class="site-links"> <ul class="site-links">
<li><a class="active">Home</a></li> <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://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><a href="http://www.paddlepaddle.org/doc/howto/index_en.html" target="_blank">Documentation</a></li>
<li class="version-switcher"> <li class="version-switcher">
<a>Version<i class="fa" aria-hidden="true"></i></a> <a>Version<i class="fa" aria-hidden="true"></i></a>
<ul> <ul>
...@@ -50,9 +68,8 @@ ...@@ -50,9 +68,8 @@
</header> </header>
<section class="head-banner"> <section class="head-banner">
<div class="row banner"> <div class="row banner">
<h1>Easy to Learn and Use Distributed</h1> <h1>PArallel Distributed Deep LEarning</h1>
<h1>Deep Learning Platform</h1> <p>An Easy-to-use, Efficient, Flexible and Scalable Deep Learning Platform</p>
<p>Providing deep learning algorithms for 100+ products</p>
<div> <div>
<a class="quick-start" href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a> <a class="quick-start" href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a>
</div> </div>
...@@ -61,8 +78,8 @@ ...@@ -61,8 +78,8 @@
</section> </section>
<section class="services"> <section class="services">
<div class="row"> <div class="row">
<h2><span>Extensive Algorithmic Service</span></h2> <h2><span>Diverse Application Scenarios</span></h2>
<p class="sub-title">Easy to use, efficient, flexible, and scalable</p> <p class="sub-title">Powers hundreds of baidu and partner products</p>
</div> </div>
<div class="row"> <div class="row">
<div> <div>
...@@ -70,8 +87,8 @@ ...@@ -70,8 +87,8 @@
</div> </div>
<div> <div>
<div class="service-desc"> <div class="service-desc">
<h3>Machine Vision</h3> <h3>Computer Vision</h3>
<p>The convoluted neural network can identify the main object in the image and output the classification result</p> <p>Using a Convolutional Neural Network (CNN) for Image Recognition and Object Detection.</p>
<div> <div>
<a role="button" class="view-more" href="http://book.paddlepaddle.org/03.image_classification/index.html" target="_blank">Read more ></a> <a role="button" class="view-more" href="http://book.paddlepaddle.org/03.image_classification/index.html" target="_blank">Read more ></a>
</div> </div>
...@@ -82,7 +99,7 @@ ...@@ -82,7 +99,7 @@
<div> <div>
<div class="service-desc"> <div class="service-desc">
<h3>Natural Language Understanding</h3> <h3>Natural Language Understanding</h3>
<p>Using the LSTM network to analyze the positive and negative aspects of the commenter's emotions from IMDB film review</p> <p>Using a Recurrent Neural Network (RNN) for Sentiment Analysis.</p>
<div> <div>
<a role="button" class="view-more" href="http://book.paddlepaddle.org/06.understand_sentiment/index.html" target="_blank">Read more ></a> <a role="button" class="view-more" href="http://book.paddlepaddle.org/06.understand_sentiment/index.html" target="_blank">Read more ></a>
</div> </div>
...@@ -98,8 +115,8 @@ ...@@ -98,8 +115,8 @@
</div> </div>
<div> <div>
<div class="service-desc"> <div class="service-desc">
<h3>Search Engine Ranking</h3> <h3>Recommender System</h3>
<p>Analyze user characteristics, movie features, rating scores, predict new users' ratings for different movies</p> <p>Using Deep Learning on Recommendation Systems to Help Users Find Interests.</p>
<div> <div>
<a role="button" class="view-more" href="http://book.paddlepaddle.org/05.recommender_system/index.html" target="_blank">Read more ></a> <a role="button" class="view-more" href="http://book.paddlepaddle.org/05.recommender_system/index.html" target="_blank">Read more ></a>
</div> </div>
...@@ -109,7 +126,7 @@ ...@@ -109,7 +126,7 @@
</section> </section>
<section class="features"> <section class="features">
<div class="row"> <div class="row">
<h2><span>Technology and Service Advantages</span></h2> <h2><span>Technical Features</span></h2>
</div> </div>
<div class="row"> <div class="row">
<div class="feature-desc"> <div class="feature-desc">
...@@ -117,35 +134,35 @@ ...@@ -117,35 +134,35 @@
<img src="./images/feature-1.png"> <img src="./images/feature-1.png">
</div> </div>
<h3>Ease of use</h3> <h3>Ease of use</h3>
<p>Provids an intuitive and flexible interface for loading data and specifying model structure.</p> <p>Provides an intuitive and flexible interface for loading data and specifying model structure.</p>
</div> </div>
<div class="feature-desc"> <div class="feature-desc">
<div class="feature-icon"> <div class="feature-icon">
<img src="./images/feature-2.png"> <img src="./images/feature-2.png">
</div> </div>
<h3>Flexibility</h3> <h3>Flexibility</h3>
<p>Supports CNN, RNN and other neural network. Easy to configure complex models.</p> <p>Supports CNN, RNN and various variants and ease to configure complicated deep models.</p>
</div> </div>
<div class="feature-desc"> <div class="feature-desc">
<div class="feature-icon"> <div class="feature-icon">
<img src="./images/feature-3.png"> <img src="./images/feature-3.png">
</div> </div>
<h3>Efficiency</h3> <h3>Efficiency</h3>
<p>Efficient optimization of computing, memory, communications and architecture.</p> <p>Provides extremely optimized operations, memory recycling, network communication.</p>
</div> </div>
<div class="feature-desc"> <div class="feature-desc">
<div class="feature-icon"> <div class="feature-icon">
<img src="./images/feature-4.png"> <img src="./images/feature-4.png">
</div> </div>
<h3>Scalability</h3> <h3>Scalability</h3>
<p>Easy to use many CPUs/GPUs and machines to speed up your training and handle large-scale data easily.</p> <p>Ease to scale heterogeneous computing resource and storage to accelerate training process.</p>
</div> </div>
</div> </div>
</section> </section>
<section class="get-started"> <section class="get-started">
<div class="row"> <div class="row">
<h2>Start Using PaddlePaddle</h2> <h2>PaddlePaddle</h2>
<p>Easy to Learn and Use Distributed Deep Learning Platform</p> <p>An Easy-to-use, Efficient, Flexible and Scalable Deep Learning Platform</p>
<div> <div>
<a role="button" class="quick-start" href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a> <a role="button" class="quick-start" href="http://book.paddlepaddle.org/index.html" target="_blank">Quick Start</a>
</div> </div>
...@@ -159,4 +176,4 @@ ...@@ -159,4 +176,4 @@
<script src="./js/common.bundle.js"></script> <script src="./js/common.bundle.js"></script>
<script src="./js/home.bundle.js"></script> <script src="./js/home.bundle.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册