Skip to content

Commit f330d96

Browse files
ColCarrolljunpenglao
authored andcommitted
Add front page guides (#3267)
1 parent f556a29 commit f330d96

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

docs/source/index.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,45 @@
6868
</div>
6969
</div>
7070

71+
<div class="ui vertical segment">
72+
<h2 class="ui dividing header">In-Depth Guides</h2>
73+
<div class="ui four stackable cards">
74+
75+
<a class="ui link card" href="/prob_dists.html">
76+
<div class="content">
77+
<div class="header">Probability Distributions</div>
78+
<div class="description">PyMC3 includes a comprehensive set of pre-defined statistical distributions that can be used as model building blocks.
79+
</div>
80+
</div>
81+
</a>
82+
83+
<a class="ui link card" href="/gp.html">
84+
<div class="content">
85+
<div class="header">Gaussian Processes</div>
86+
<div class="description">Sometimes an unknown parameter or variable in a model is not a scalar value or a fixed-length vector, but a function. A Gaussian process (GP) can be used as a prior probability distribution whose support is over the space of continuous functions. PyMC3 provides rich support for defining and using GPs.
87+
</div>
88+
</div>
89+
</a>
90+
91+
<a class="ui link card" href="/notebooks/variational_api_quickstart.html">
92+
<div class="content">
93+
<div class="header">Variational Inference</div>
94+
<div class="description">Variational inference saves computational cost by turning a problem of integration into one of optimization. PyMC3's variational API supports a number of cutting edge algorithms, as well as minibatch for scaling to large datasets.
95+
</div>
96+
</div>
97+
</a>
98+
99+
<a class="ui link card" href="/theano.html">
100+
<div class="content">
101+
<div class="header">Theano</div>
102+
<div class="description">Theano is the deep-learning library PyMC3 uses to construct probability distributions and then access the gradient in order to implement cutting edge inference algorithms. More advanced models may be built by understanding this layer.
103+
</div>
104+
</div>
105+
</a>
106+
107+
</div>
108+
</div>
109+
71110
<div class="ui vertical segment">
72111
<h2 class="ui dividing header">License</h2>
73112
<p>PyMC3 is licensed <a href="https://github.com/pymc-devs/pymc3/blob/master/LICENSE">under the Apache License, V2.</a></p>

docs/source/semantic_sphinx/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</div>
4646
</div>
4747
{% if pagename == 'index' %}
48-
<div class="ui text container">
48+
<div class="ui center aligned text container">
4949
<img src="https://cdn.rawgit.com/pymc-devs/pymc3/master/docs/logos/svg/PyMC3_banner.svg" />
5050
<h2>Probabilistic Programming in Python</h2>
5151
<a href="intro.html">

0 commit comments

Comments
 (0)