-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reexport ReactiveMP, GraphPPL, and Rocket
- Loading branch information
Showing
7 changed files
with
69 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
indent = 4 | ||
margin = 120 | ||
always_for_in = true | ||
whitespace_typedefs = true | ||
remove_extra_newlines = true | ||
import_to_using = false | ||
pipe_to_function_call = false | ||
short_to_long_function_def = false | ||
whitespace_in_kwargs = true | ||
annotate_untyped_fields_with_any = false | ||
format_docstrings = false | ||
conditional_to_if = true | ||
trailing_comma = false | ||
indent_submodule = false | ||
align_assignment = true | ||
align_struct_field = true | ||
align_conditional = true | ||
align_pair_arrow = true | ||
align_matrix = false | ||
join_lines_based_on_source = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 Bagaev Dmitry <[email protected]> and contributors | ||
Copyright (c) 2022 BIASlab | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
name = "RxInfer" | ||
uuid = "86711068-29c9-4ff7-b620-ae75d7495b3d" | ||
authors = ["Bagaev Dmitry <[email protected]> and contributors"] | ||
version = "0.1.0" | ||
authors = ["Bagaev Dmitry <[email protected]> and contributors"] | ||
version = "1.0.0" | ||
|
||
[deps] | ||
GraphPPL = "b3f8163a-e979-4e85-b43e-1f63d8c8b42c" | ||
ReactiveMP = "a194aa59-28ba-4574-a09c-4a745416d6e3" | ||
Reexport = "189a3867-3050-52da-a836-e630ba90ab69" | ||
Rocket = "df971d30-c9d6-4b37-b8ff-e965b2cb3a40" | ||
|
||
[compat] | ||
GraphPPL = "2.0.1" | ||
ReactiveMP = "2.0.6" | ||
Reexport = "1.2.0" | ||
Rocket = "1.3.22" | ||
julia = "1.6" | ||
|
||
[extras] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
# RxInfer | ||
|
||
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://bvdmitri.github.io/RxInfer.jl/stable/) | ||
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://bvdmitri.github.io/RxInfer.jl/dev/) | ||
[![Build Status](https://github.com/bvdmitri/RxInfer.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/bvdmitri/RxInfer.jl/actions/workflows/CI.yml?query=branch%3Amain) | ||
[![Coverage](https://codecov.io/gh/bvdmitri/RxInfer.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/bvdmitri/RxInfer.jl) | ||
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://biaslab.github.io/RxInfer.jl/stable/) | ||
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://biaslab.github.io/RxInfer.jl/dev/) | ||
[![Build Status](https://github.com/biaslab/RxInfer.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/biaslab/RxInfer.jl/actions/workflows/CI.yml?query=branch%3Amain) | ||
[![Coverage](https://codecov.io/gh/biaslab/RxInfer.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/biaslab/RxInfer.jl) | ||
[![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/R/RxInfer.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/report.html) | ||
|
||
This package unites different packages for automated Bayesian inference. Work in progress. | ||
|
||
See also: | ||
- [`ReactiveMP.jl`](https://github.com/biaslab/ReactiveMP.jl) | ||
- [`GraphPPL.jl`](https://github.com/biaslab/GraphPPL.jl) | ||
- [`Rocket.jl`](https://github.com/biaslab/Rocket.jl) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
using RxInfer | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(RxInfer, :DocTestSetup, :(using RxInfer); recursive=true) | ||
DocMeta.setdocmeta!(RxInfer, :DocTestSetup, :(using RxInfer); recursive = true) | ||
|
||
makedocs(; | ||
modules=[RxInfer], | ||
authors="Bagaev Dmitry <[email protected]> and contributors", | ||
repo="https://github.com/bvdmitri/RxInfer.jl/blob/{commit}{path}#{line}", | ||
sitename="RxInfer.jl", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
canonical="https://bvdmitri.github.io/RxInfer.jl", | ||
edit_link="main", | ||
assets=String[], | ||
modules = [RxInfer], | ||
authors = "Bagaev Dmitry <[email protected]> and contributors", | ||
repo = "https://github.com/biaslab/RxInfer.jl/blob/{commit}{path}#{line}", | ||
sitename = "RxInfer.jl", | ||
format = Documenter.HTML(; | ||
prettyurls = get(ENV, "CI", "false") == "true", | ||
canonical = "https://biaslab.github.io/RxInfer.jl", | ||
edit_link = "main", | ||
assets = String[] | ||
), | ||
pages=[ | ||
"Home" => "index.md", | ||
], | ||
pages = [ | ||
"Home" => "index.md" | ||
] | ||
) | ||
|
||
deploydocs(; | ||
repo="github.com/bvdmitri/RxInfer.jl", | ||
devbranch="main", | ||
repo = "github.com/biaslab/RxInfer.jl", | ||
devbranch = "main" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
module RxInfer | ||
|
||
# Write your package code here. | ||
using Reexport | ||
|
||
# For now we simply reexport existing functionality from our main packages | ||
@reexport using ReactiveMP, GraphPPL, Rocket | ||
|
||
end |