Skip to content

Commit 434afd1

Browse files
authored
Merge branch 'main' into sunxd/auto_marginalization
2 parents 92a907b + b3cb45a commit 434afd1

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

DoodleBUGS/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# DoodleBUGS: Browser-Based Graphical Interface for JuliaBUGS
22

3-
A web-based graphical editor for creating Bayesian models, inspired by DoodleBUGS and designed to work with JuliaBUGS. This project aims to provide an visual interface for building, understanding, and sharing probabilistic models.
3+
A web-based graphical editor for creating Bayesian models, inspired by DoodleBUGS and designed to work with JuliaBUGS. This project aims to provide a visual interface for building, understanding, and sharing probabilistic models.
44

55
Try DoodleBUGS at [`https://turinglang.org/JuliaBUGS.jl/DoodleBUGS/`](https://turinglang.org/JuliaBUGS.jl/DoodleBUGS/).
66

77
# Project Status: Pre-Alpha
88

99
This project is currently in the pre-alpha phase of development as part of the Google Summer of Code 2025 program.
1010

11-
> Please avoid using this project in WebKit browsers like Safari, as it may not function correctly. We recommend using Chromium-based browsers such as Google Chrome or Microsoft Edge for the best experience, It works fine in Firefox as well. And it does not work in any browser in ipadOS and iOS as all browsers in these platforms are WebKit based.
11+
> [!NOTE]
12+
> Please avoid using this project in WebKit browsers like Safari, as it may not function correctly. We recommend using Chromium-based browsers such as Google Chrome or Microsoft Edge for the best experience. It works fine in Firefox as well. Note that it does not work in any browser on iPadOS and iOS, as all browsers on these platforms are WebKit-based.
1213
1314
- Contributor: [Shravan Goswami @shravanngoswamii](https://github.com/shravanngoswamii)
1415
- Mentor: [Xianda Sun @sunxd3](https://github.com/sunxd3)

DoodleBUGS/src/components/layouts/AboutModal.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
<template #body>
77
<div class="about-content">
88
<p>
9-
<strong>DoodleBUGS</strong> is a graphical modeling tool designed to simplify the creation
10-
of Bayesian models for analysis with BUGS language --
9+
<strong>DoodleBUGS</strong> is a graphical modelling tool designed to simplify the creation
10+
of Bayesian models for analysis with the BUGS language using
1111
<a href="https://github.com/TuringLang/JuliaBUGS.jl" target="_blank" rel="noopener noreferrer">JuliaBUGS.jl</a>.
1212
</p>
1313
<p>
1414
Our goal is to provide an intuitive, visual interface for statisticians,
1515
researchers, and students to build, understand, and share complex probabilistic models.
1616
</p>
1717
<hr />
18-
<p><strong>Version:</strong> Alpha Phase -- We are just experimenting with things now!</p>
18+
<p><strong>Version:</strong> Alpha Phase -- Currently in experimental development.</p>
1919
</div>
2020
</template>
2121
<template #footer>

JuliaBUGS/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JuliaBUGS Examples
22

3-
We adapted some examples to show how to use JuliaBUGS in this repo.
3+
We have adapted some examples to show how to use JuliaBUGS in this repository.
44

55
## Sources
66

JuliaBUGS/src/JuliaBUGS.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ end
242242
"""
243243
compile(model_def, data[, initial_params]; skip_validation=false)
244244
245-
Compile the model with model definition and data. Optionally, initializations can be provided.
245+
Compile the model with model definition and data. Optionally, initializations can be provided.
246246
If initializations are not provided, values will be sampled from the prior distributions.
247247
248248
By default, validates that all functions in the model are in the BUGS allowlist (suitable for @bugs macro).
@@ -328,7 +328,7 @@ end
328328
"""
329329
@bugs_primitive(func)
330330
331-
`@bugs_primitive` can also be used to register function without definition.
331+
`@bugs_primitive` can also be used to register functions without definition.
332332
"""
333333
macro bugs_primitive(func::Symbol)
334334
return _bugs_primitive_expr(func, esc(func))

0 commit comments

Comments
 (0)