-
-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added a separate package BayesianNeuralPDE.jl #920
Open
ParamThakkar123
wants to merge
15
commits into
SciML:master
Choose a base branch
from
ParamThakkar123:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
41fd266
Added a separate package BayesianNeuralPDE.jl
ParamThakkar123 75ac7c0
Updates
ParamThakkar123 763dccc
Updates
ParamThakkar123 363b805
Circular
ParamThakkar123 a731c7c
Updates
ParamThakkar123 cbcc549
Updates
ParamThakkar123 8f9f71b
Updates
ParamThakkar123 5c1eb43
Fixes
ParamThakkar123 c4e61df
Fixes
ParamThakkar123 cc96f24
Updates
ParamThakkar123 acad604
Fixes
ParamThakkar123 82eae31
Formatted each document and removed stale imports
ParamThakkar123 c7c26f1
Removed BayesianNeuralPDE imports
ParamThakkar123 dffd822
Removed undefined exports
ParamThakkar123 57ee1aa
Format
ParamThakkar123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,30 @@ | ||
name = "BayesianNeuralPDE" | ||
uuid = "3cea9122-e921-42ea-a9d7-c72fcb58ce53" | ||
authors = ["paramthakkar123 <[email protected]>"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
AdvancedHMC = "0bf59076-c3b1-5ca4-86bd-e02cd72cde3d" | ||
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" | ||
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" | ||
ConcreteStructs = "2569d6c7-a4a2-43d3-a901-331e8e4be471" | ||
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" | ||
Functors = "d9f16b24-f501-4c13-a1f2-28368ffc5196" | ||
Lux = "b2108857-7c20-44ae-9111-449ecde12c47" | ||
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d" | ||
MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca" | ||
OptimizationOptimisers = "42dfb2eb-d2b4-4451-abcd-913932933ac1" | ||
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
LogDensityProblems = "6fdf6af0-433a-55f7-b3ed-c6c6e0b8df7c" | ||
NeuralPDE = "315f7962-48a3-4962-8226-d0f33b1235f0" | ||
|
||
[compat] | ||
ChainRulesCore = "1.25.1" | ||
ConcreteStructs = "0.2.3" | ||
MonteCarloMeasurements = "1.4.3" | ||
Printf = "1.11.0" | ||
SciMLBase = "2.72.1" |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
module BayesianNeuralPDE | ||
|
||
using MCMCChains, Distributions, OrdinaryDiffEq, OptimizationOptimisers, Lux, | ||
AdvancedHMC, Statistics, Random, Functors, ComponentArrays, MonteCarloMeasurements | ||
using Printf: @printf | ||
using ConcreteStructs: @concrete | ||
using NeuralPDE: PhysicsInformedNN | ||
using SciMLBase: SciMLBase | ||
using ChainRulesCore: ChainRulesCore, @non_differentiable, @ignore_derivatives | ||
using LogDensityProblems: LogDensityProblems | ||
|
||
abstract type AbstractPINN end | ||
|
||
abstract type AbstractTrainingStrategy end | ||
abstract type NeuralPDEAlgorithm <: SciMLBase.AbstractODEAlgorithm end | ||
|
||
include("advancedHMC_MCMC.jl") | ||
include("pinn_types.jl") | ||
include("BPINN_ode.jl") | ||
include("discretize.jl") | ||
include("PDE_BPINN.jl") | ||
|
||
export BNNODE, ahmc_bayesian_pinn_ode, ahmc_bayesian_pinn_pde | ||
export BPINNsolution, BayesianPINN | ||
|
||
end |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this added?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because, when I precompiled NeuralPDE, it gave me an error saying this dependency is required for NeuralPDE but not found in its dependencies section