Skip to content

Commit

Permalink
add resubmit
Browse files Browse the repository at this point in the history
  • Loading branch information
bananenpampe committed Jun 30, 2024
1 parent c6ec71a commit 4d113fe
Show file tree
Hide file tree
Showing 8 changed files with 4,495 additions and 20 deletions.
Binary file modified Plots_and_analysis/figure2/compound_toy_plot_transposed.pdf
Binary file not shown.
537 changes: 537 additions & 0 deletions Plots_and_analysis/figure2/more_detailed_toy.ipynb

Large diffs are not rendered by default.

1,999 changes: 1,990 additions & 9 deletions Plots_and_analysis/figure2/toy.ipynb

Large diffs are not rendered by default.

Binary file added Plots_and_analysis/figure4/QM9_OOD.pdf
Binary file not shown.
683 changes: 672 additions & 11 deletions Plots_and_analysis/figure4/make_combined_Z_UQ_plot.ipynb

Large diffs are not rendered by default.

Binary file not shown.
1,290 changes: 1,290 additions & 0 deletions Plots_and_analysis/si_plot4/plot.ipynb

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions UCI_experiments/model/utils_modified.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,3 +289,9 @@ def get_toy():
y = 0.4*torch.sin(2*torch.pi*x) + torch.normal(0, 0.01, (1000,))

return x.reshape(-1,1), y.reshape(-1,1)

def get_toy_linear():
x = torch.linspace(0, 12, 1000)
y = x + torch.normal(0, 1, (1000,))

return x.reshape(-1,1), y.reshape(-1,1)

0 comments on commit 4d113fe

Please sign in to comment.