Skip to content

Commit b6aee64

Browse files
committed
change CI to 2SD
1 parent 827e7aa commit b6aee64

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

autoemulate/core/plotting.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from typing import Literal
2+
13
import matplotlib.pyplot as plt
24
import numpy as np
35
import torch
@@ -124,8 +126,8 @@ def plot_xy(
124126
else:
125127
ax.fill_between(
126128
x_sorted,
127-
y_pred_sorted - 1.96 * y_std,
128-
y_pred_sorted + 1.96 * y_std,
129+
y_pred_sorted - 2 * y_std,
130+
y_pred_sorted + 2 * y_std,
129131
color=pred_points_color,
130132
alpha=0.2,
131133
label="±2\u03c3",

0 commit comments

Comments
 (0)