Skip to content

Commit

Permalink
Merge pull request #17 from invenia/wct/tweak-language
Browse files Browse the repository at this point in the history
Remove references to posterior
  • Loading branch information
willtebbutt authored Aug 7, 2020
2 parents 6d66ef7 + d2d813a commit 9fa0caa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Models"
uuid = "e6388cff-ecff-480c-9b53-83211bf7812a"
authors = ["Invenia Technical Computing Corporation"]
version = "0.2.0"
version = "0.2.1"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down
4 changes: 2 additions & 2 deletions src/test_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ end
"""
FakeTemplate{DistributionEstimate, SingleOutput}()
A [`Template`](@ref) whose [`Model`](@ref) will predict a univariate normal posterior
A [`Template`](@ref) whose [`Model`](@ref) will predict a univariate normal
distribution (with zero mean and unit standard deviation) for each observation.
"""
function FakeTemplate{DistributionEstimate, SingleOutput}()
Expand All @@ -82,7 +82,7 @@ end
"""
FakeTemplate{DistributionEstimate, MultiOutput}()
A [`Template`](@ref) whose [`Model`](@ref) will predict a multivariate normal posterior
A [`Template`](@ref) whose [`Model`](@ref) will predict a multivariate normal
distribution (with zero-vector mean and identity covariance matrix) for each observation.
"""
function FakeTemplate{DistributionEstimate, MultiOutput}()
Expand Down
2 changes: 1 addition & 1 deletion src/traits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract type PointEstimate <: EstimateTrait end
"""
DistributionEstimate <: EstimateTrait
Specifies that the [`Model`](@ref) returns a posterior distribution over the response variables.
Specifies that the [`Model`](@ref) returns a distribution over the response variables.
"""
abstract type DistributionEstimate <: EstimateTrait end

Expand Down

5 comments on commit 9fa0caa

@willtebbutt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Register Failed
@willtebbutt, it looks like you are not a publicly listed member/owner in the parent organization (invenia).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@willtebbutt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nickrobinson251 could you lend a hand?

@nickrobinson251
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/19147

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.1 -m "<description of version>" 9fa0caa695f621baeb6953fd354413b54b85339a
git push origin v0.2.1

Please sign in to comment.