Skip to content

Commit 1b8e9ae

Browse files
committed
WIP Release v1.5.2: Added improvements to medics documentation
1 parent 1efde01 commit 1b8e9ae

File tree

6 files changed

+25
-13
lines changed

6 files changed

+25
-13
lines changed

docs/releases/mydoc_release_notes_152.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
!!! summary ""
2-
Version 1.5.2 of DynaML, released March 2, 2017,
3-
introduces functionality through improvement in the pipes API and
4-
increased integration with Tensorflow.
2+
Version 1.5.2 of DynaML, released March 2, 2017, introduces functionality through improvement in the pipes API and increased integration with Tensorflow.
53

64

75
## Additions
86

9-
### Tensorflow Integration
7+
### Tensorflow Integration
108

119
- Tensorflow (beta) support now live, thanks to the [tensorflow_scala](https://github.com/eaplatanios/tensorflow_scala) project! Try it out in:
1210
* [CIFAR-10](https://github.com/transcendent-ai-labs/DynaML/blob/master/scripts/cifar.sc) example script
@@ -18,11 +16,11 @@
1816
- The `dtflearn` package object deals with basic neural network building blocks which are often needed while constructing prediction architectures.
1917

2018

21-
### Library Organisation
19+
### Library Organisation
2220

2321
- Added `dynaml-repl` and `dynaml-notebook` modules to repository.
2422

25-
### DynaML Server
23+
### DynaML Server
2624

2725
- DynaML ssh server now available
2826
```bash
@@ -33,7 +31,7 @@
3331
$ ssh repl@localhost -p22222
3432
```
3533

36-
### Basis Generators
34+
### Basis Generators
3735
- Legrendre polynomial basis generators
3836

3937
## Bugfixes

docs/scaladoc/v1.5.2/core.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<meta http-equiv="REFRESH" content="0;url=https://transcendent-ai-labs.github.io/api_docs/DynaML/v1.5.2/dynaml-core/"></HEAD>

docs/scaladoc/v1.5.2/examples.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<meta http-equiv="REFRESH" content="0;url=https://transcendent-ai-labs.github.io/api_docs/DynaML/v1.5.2/dynaml-examples/"></HEAD>

docs/scaladoc/v1.5.2/pipes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<meta http-equiv="REFRESH" content="0;url=https://transcendent-ai-labs.github.io/api_docs/DynaML/v1.5.2/dynaml-pipes/"></HEAD>

docs/scaladoc/v1.5.2/repl.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<meta http-equiv="REFRESH" content="0;url=https://transcendent-ai-labs.github.io/api_docs/DynaML/v1.5.2/dynaml-repl/"></HEAD>

mkdocs.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ pages:
2323
- 'v1.4': 'releases/mydoc_release_notes_14.md'
2424
- Scaladoc:
2525
- v1.5.x:
26+
- v1.5.2:
27+
- dynaml-core: 'scaladoc/v1.5.2/core.md'
28+
- dynaml-pipes: 'scaladoc/v1.5.2/pipes.md'
29+
- dynaml-repl: 'scaladoc/v1.5.2/repl.md'
30+
- dynaml-examples: 'scaladoc/v1.5.2/examples.md'
2631
- v1.5.1:
2732
- dynaml-core: 'scaladoc/v1.5.1/core.md'
2833
- dynaml-pipes: 'scaladoc/v1.5.1/pipes.md'
@@ -109,6 +114,13 @@ pages:
109114
- State of DynaML 2016: 'blog/2016-12-11-dynaml-new-features.md'
110115
- Resources for Beginners: 'blog/2016-12-08-getting-started-ml.md'
111116
theme: material
117+
theme:
118+
name: 'material'
119+
logo: 'images/dynaml_logo3_small.png'
120+
favicon: 'images/dynaml_logo3.png'
121+
palette:
122+
primary: 'teal'
123+
accent: 'green'
112124
markdown_extensions:
113125
- admonition
114126
- codehilite(guess_lang=false, linenums=true)
@@ -131,16 +143,14 @@ repo_name: 'transcendent-ai-labs/DynaML'
131143
repo_url: 'https://github.com/transcendent-ai-labs/DynaML'
132144
extra_javascript:
133145
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
134-
google_analytics: ['UA-59996358-2', 'https://transcendent-ai-labs.github.io/DynaML/']
146+
google_analytics:
147+
- 'UA-59996358-2'
148+
- 'auto'
135149
extra:
136-
logo: 'images/dynaml_logo3_small.png'
137150
disqus: 'dynaml'
138-
palette:
139-
primary: 'teal'
140-
accent: 'green'
141151
social:
142152
- type: 'github'
143153
link: 'https://github.com/transcendent-ai-labs'
144154
- type: 'twitter'
145155
link: 'https://twitter.com/dyna_ml'
146-
site_favicon: 'images/dynaml_logo3.png'
156+

0 commit comments

Comments
 (0)