Skip to content

Commit 5ad4555

Browse files
committed
Release v1.4.3
1 parent 871a6ce commit 5ad4555

File tree

7 files changed

+79
-6
lines changed

7 files changed

+79
-6
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ packageDescription := "DynaML is a scala library/repl for implementing and worki
1212
"which can be extended easily to implement advanced models for small and large scale applications.\n\n"+
1313
"But the library can also be used as an educational/research tool for data analysis."
1414

15-
val mainVersion = "v1.4.3-beta.4"
15+
val mainVersion = "v1.4.3"
1616

1717
val dataDirectory = settingKey[File]("The directory holding the data files for running example scripts")
1818

copy-docs.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/bash
2-
3-
cp -R dynaml-core/target/scala-2.11/api/* docs/api_docs/v1.4.3/dynaml-core/
4-
cp -R dynaml-pipes/target/scala-2.11/api/* docs/api_docs/v1.4.3/dynaml-pipes/
5-
cp -R dynaml-examples/target/scala-2.11/api/* docs/api_docs/v1.4.3/dynaml-examples/
6-
cp -R target/scala-2.11/api/* docs/api_docs/v1.4.3/dynaml-repl/
2+
sbt stage
3+
cp -R dynaml-core/target/scala-2.11/api/* ../transcendent-ai-labs.github.io/api_docs/DynaML/v1.4.3/dynaml-core/
4+
cp -R dynaml-pipes/target/scala-2.11/api/* ../transcendent-ai-labs.github.io/api_docs/DynaML/v1.4.3/dynaml-pipes/
5+
cp -R dynaml-examples/target/scala-2.11/api/* ../transcendent-ai-labs.github.io/api_docs/DynaML/v1.4.3/dynaml-examples/
6+
cp -R target/scala-2.11/api/* ../transcendent-ai-labs.github.io/api_docs/DynaML/v1.4.3/dynaml-repl/
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
!!! summary ""
2+
Version 1.4.3 of DynaML, released June 13, 2017. Updates, improvements and new features.
3+
4+
## DynaML REPL
5+
6+
### Additions
7+
8+
9+
**Module** `scripts`
10+
11+
- Added `gp_mcmc_santafe.sc` worksheet to try new MCMC feature on GP models; applied on the Santa Fe laser data set.
12+
13+
**General**
14+
15+
- Updated Ammonite version to `0.9.9`
16+
17+
## Pipes API
18+
19+
### Additions
20+
21+
22+
**Package** `dynaml.pipes`
23+
24+
- Added `._1` and `._2` members in `#!scala ParallelPipe`
25+
26+
27+
28+
## Core API
29+
30+
### Additions
31+
32+
33+
**Package** `dynaml.models.neuralnets`
34+
35+
- Added [SELU](https://transcendent-ai-labs.github.io/api_docs/DynaML/recent/dynaml-core/#io.github.mandar2812.dynaml.models.neuralnets.VectorSELU) activation function proposed by [Hochreiter et. al](https://arxiv.org/abs/1706.02515)
36+
37+
**Package** `dynaml.models.bayes`
38+
39+
- Added `*` method to `#!scala CoRegGPPrior` which scales it with to a `#!scala ParallelPipe`
40+
41+
**Package** `dynaml.probability.mcmc`
42+
43+
- Added `#!scala HyperParameterMCMC` for performing MCMC sampling for models extending `#!scala GloballyOptimizable`.
44+
45+
**Package** `dynaml.utils`
46+
47+
- Added trait `#!scala HyperParameters` outlining methods that must be implemented by entities having hyper-parameters
48+
49+
- Added `#!scala MeanScaler`, `#!scala PCAScaler` to perform mean centering and PCA on data sets. Also added to `#!scala DynaMLPipe` pipe library.
50+
51+
- Added tail recursive computation of the [Chebyshev](https://en.wikipedia.org/wiki/Chebyshev_polynomials) polynomials of the first and second kind in [`#!scala utils.chebyshev`](https://transcendent-ai-labs.github.io/api_docs/DynaML/recent/dynaml-core/#io.github.mandar2812.dynaml.utils.package).
52+
53+
54+
55+
56+
### Improvements
57+
58+
59+
**Package** `dynaml.models.bayes`
60+
61+
- Added `#!scala trendParamsEncoder` which converts the trend/mean parameters into a scala `#!scala Map[String, Double]` making them
62+
consistent with covariance parameters. Added to `#!scala GaussianProcessPrior` and `#!scala ESGPPrior` families.
63+
64+
65+

docs/scaladoc/v1.4.3/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.4.3/dynaml-core/"></HEAD>

docs/scaladoc/v1.4.3/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.4.3/dynaml-examples/"></HEAD>

docs/scaladoc/v1.4.3/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.4.3/dynaml-pipes/"></HEAD>

mkdocs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@ pages:
1212
- 'Supported Features': supported_features.md
1313
- 'Structure': structure.md
1414
- Releases:
15+
- 'v1.4.3': 'releases/mydoc_release_notes_143.md'
1516
- 'v1.4.2': 'releases/mydoc_release_notes_142.md'
1617
- 'v1.4.1': 'releases/mydoc_release_notes_141.md'
1718
- 'v1.4': 'releases/mydoc_release_notes_14.md'
1819
- Scaladoc:
20+
- v1.4.3:
21+
- dynaml-core: 'scaladoc/v1.4.3/core.md'
22+
- dynaml-pipes: 'scaladoc/v1.4.3/pipes.md'
23+
- dynaml-examples: 'scaladoc/v1.4.3/examples.md'
1924
- v1.4.2:
2025
- dynaml-core: 'scaladoc/v1.4.2/core.md'
2126
- dynaml-pipes: 'scaladoc/v1.4.2/pipes.md'

0 commit comments

Comments
 (0)