Skip to content

Commit

Permalink
update distill template / regenerate site
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Jan 3, 2019
1 parent f985129 commit 39a95f6
Show file tree
Hide file tree
Showing 41 changed files with 405 additions and 89 deletions.
9 changes: 9 additions & 0 deletions docs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -554,6 +558,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
9 changes: 9 additions & 0 deletions docs/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -554,6 +558,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
19 changes: 12 additions & 7 deletions docs/gallery.html
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,8 @@

</style>

<link href="site_libs/font-awesome-5.0.13/css/fa-svg-with-js.css" rel="stylesheet"/>
<script src="site_libs/font-awesome-5.0.13/js/fontawesome-all.min.js"></script>
<script src="site_libs/font-awesome-5.0.13/js/fa-v4-shims.min.js"></script>
<link href="site_libs/font-awesome-5.1.0/css/all.css" rel="stylesheet"/>
<link href="site_libs/font-awesome-5.1.0/css/v4-shims.css" rel="stylesheet"/>
<script src="site_libs/headroom-0.9.4/headroom.min.js"></script>
<!--/radix_placeholder_navigation_in_header-->
<!--radix_placeholder_distill-->
Expand Down Expand Up @@ -525,6 +524,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -555,6 +558,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down Expand Up @@ -1330,7 +1338,7 @@
padding-bottom: 12px;
}
.posts-list {
margin-top: 24px;
margin-top: 60px;
margin-bottom: 24px;
}

Expand Down Expand Up @@ -1465,9 +1473,6 @@
.posts-list .post-preview h2 {
font-size: 26px;
}
.posts-list {
margin-top: 60px;
}
.posts-list .post-preview .thumbnail {
float: right;
width: 35%;
Expand Down
16 changes: 11 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -555,6 +559,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down Expand Up @@ -1330,7 +1339,7 @@
padding-bottom: 12px;
}
.posts-list {
margin-top: 24px;
margin-top: 60px;
margin-bottom: 24px;
}

Expand Down Expand Up @@ -1465,9 +1474,6 @@
.posts-list .post-preview h2 {
font-size: 26px;
}
.posts-list {
margin-top: 60px;
}
.posts-list .post-preview .thumbnail {
float: right;
width: 35%;
Expand Down Expand Up @@ -1623,7 +1629,7 @@ <h1 class="posts-list-caption">TensorFlow for R Blog</h1>
<a href="posts/2018-12-18-object-detection-concepts/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Keras","Images"]}</script>
<div class="metadata">
<div class="publishedDate">Dec. 17, 2018</div>
<div class="publishedDate">Dec. 18, 2018</div>
</div>
<div class="thumbnail">
<img data-src="posts/2018-12-18-object-detection-concepts/images/results.jpg"/>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<link>https://blogs.rstudio.com/tensorflow/</link>
</image>
<generator>Radix</generator>
<lastBuildDate>Mon, 17 Dec 2018 00:00:00 +0000</lastBuildDate>
<lastBuildDate>Tue, 18 Dec 2018 00:00:00 +0000</lastBuildDate>
<item>
<title>Concepts in object detection</title>
<dc:creator>Sigrid Keydana</dc:creator>
<link>https://blogs.rstudio.com/tensorflow/posts/2018-12-18-object-detection-concepts</link>
<description>As shown in a previous post, naming and locating a single object in an image is a task that may be approached in a straightforward way. This is not the same with general object detection, though - naming and locating several objects at once, with no prior information about how many objects are supposed to be detected.
In this post, we explain the steps involved in coding a basic single-shot object detector: Not unlike SSD (Single-shot Multibox Detector), but simplified and designed not for best performance, but comprehensibility.</description>
<guid>https://blogs.rstudio.com/tensorflow/posts/2018-12-18-object-detection-concepts</guid>
<pubDate>Mon, 17 Dec 2018 00:00:00 +0000</pubDate>
<pubDate>Tue, 18 Dec 2018 00:00:00 +0000</pubDate>
<media:content url="https://blogs.rstudio.com/tensorflow/posts/2018-12-18-object-detection-concepts/images/results.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
Expand Down
9 changes: 9 additions & 0 deletions docs/posts/2017-08-17-tensorflow-v13-released/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
9 changes: 9 additions & 0 deletions docs/posts/2017-08-31-tensorflow-estimators-for-r/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
9 changes: 9 additions & 0 deletions docs/posts/2017-09-06-keras-for-r/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
9 changes: 9 additions & 0 deletions docs/posts/2017-10-04-tfruns/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -584,6 +588,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -584,6 +588,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -584,6 +588,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
9 changes: 9 additions & 0 deletions docs/posts/2017-12-22-word-embeddings-with-keras/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
9 changes: 9 additions & 0 deletions docs/posts/2018-01-10-r-interface-to-cloudml/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@
/* Tweak code blocks (note that this CSS is repeated above in an injection
into the d-code shadow dom) */

d-code {
overflow-x: auto !important;
}

pre.d-code code.d-code {
padding-left: 10px;
font-size: 12px;
Expand Down Expand Up @@ -583,6 +587,11 @@
}

@media(min-width: 768px) {

d-code {
overflow-x: visible !important;
}

pre.d-code code.d-code {
padding-left: 18px;
font-size: 14px;
Expand Down
Loading

0 comments on commit 39a95f6

Please sign in to comment.