Skip to content

Commit 27548e9

Browse files
committedMay 11, 2021
add new stuff
1 parent 6f44307 commit 27548e9

File tree

4 files changed

+400
-2
lines changed

4 files changed

+400
-2
lines changed
 

‎examples/3-blobs/3blobs1line.ipynb

+301
Large diffs are not rendered by default.

‎examples/3-blobs/maker.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import jax.numpy as jnp
2+
from relax import hist_kde
3+
4+
5+
def yield_maker(data_gen, bandwidth=None, SCALE=1, syst=True):
6+
def yields_from_data(angle, anchr=jnp.array([0.0, 0.0])):
7+
8+
s1, b1, b2, b3 = data_gen()
9+
10+
# direc = jnp.array([jnp.cos(angle),jnp.sin(angle)])
11+
normal = jnp.array([jnp.cos(angle + jnp.pi / 2), jnp.sin(angle + jnp.pi / 2)])
12+
13+
bins = jnp.linspace(-100, 100, 3)
14+
hb1 = hist_kde(jnp.matmul((b1 - anchr), normal), bins=bins, bandwidth=bandwidth)
15+
hb2 = hist_kde(jnp.matmul((b2 - anchr), normal), bins=bins, bandwidth=bandwidth)
16+
hb3 = hist_kde(jnp.matmul((b3 - anchr), normal), bins=bins, bandwidth=bandwidth)
17+
18+
hs1 = hist_kde(jnp.matmul((s1 - anchr), normal), bins=bins, bandwidth=bandwidth)
19+
20+
nb1 = hb1 / SCALE
21+
nb2 = hb2 / SCALE
22+
nb3 = hb3 / SCALE
23+
24+
ns1 = hs1 / SCALE
25+
26+
if not syst:
27+
nb1, nb2, nb3 = nb2, nb2, nb2
28+
29+
return ns1, nb1, nb2, nb3
30+
31+
return yields_from_data

‎examples/3-blobs/model.py

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
import sys
2+
from unittest.mock import patch
3+
4+
import pyhf
5+
6+
jax_backend = pyhf.tensor.jax_backend(precision="64b")
7+
pyhf.set_backend(jax_backend)
8+
9+
10+
@patch.object(sys.modules["pyhf.tensor.common"], "default_backend", new=jax_backend)
11+
@patch.object(sys.modules["pyhf.pdf"], "default_backend", new=jax_backend)
12+
@patch("pyhf.default_backend", new=jax_backend)
13+
@patch.object(
14+
sys.modules["pyhf.interpolators.code0"], "default_backend", new=jax_backend
15+
)
16+
@patch.object(
17+
sys.modules["pyhf.interpolators.code1"], "default_backend", new=jax_backend
18+
)
19+
@patch.object(
20+
sys.modules["pyhf.interpolators.code2"], "default_backend", new=jax_backend
21+
)
22+
@patch.object(
23+
sys.modules["pyhf.interpolators.code4"], "default_backend", new=jax_backend
24+
)
25+
@patch.object(
26+
sys.modules["pyhf.interpolators.code4p"], "default_backend", new=jax_backend
27+
)
28+
@patch.object(
29+
sys.modules["pyhf.modifiers.shapefactor"], "default_backend", new=jax_backend
30+
)
31+
@patch.object(
32+
sys.modules["pyhf.modifiers.shapesys"], "default_backend", new=jax_backend
33+
)
34+
@patch.object(
35+
sys.modules["pyhf.modifiers.staterror"], "default_backend", new=jax_backend
36+
)
37+
@patch.object(sys.modules["pyhf.constraints"], "default_backend", new=jax_backend)
38+
def simplemodel2(s, b_up, b_nom, b_dn):
39+
spec = {
40+
"channels": [
41+
{
42+
"name": "singlechannel",
43+
"samples": [
44+
{
45+
"name": "signal",
46+
"data": s,
47+
"modifiers": [
48+
{"name": "mu", "type": "normfactor", "data": None}
49+
],
50+
},
51+
{
52+
"name": "background",
53+
"data": b_nom,
54+
"modifiers": [
55+
{
56+
"name": "uncorr_bkguncrt",
57+
"type": "histosys",
58+
"data": {"hi_data": b_up, "lo_data": b_dn},
59+
}
60+
],
61+
},
62+
],
63+
}
64+
]
65+
}
66+
return pyhf.Model(spec)

‎examples/basic-1-bin/transforms.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ def to_bounded(param, bounds):
2727
def to_inf_vec(param, bounds):
2828
bounds = jnp.asarray(bounds)
2929
a, b = bounds[:, 0], bounds[:, 1]
30-
x = (2.0 * param - a) / (b - a) - 1.0
30+
x = 2.0 * (param - a) / (b - a) - 1.0
3131
return jnp.arcsin(x)
3232

3333

3434
# [-inf, inf] <- [a,b]
3535
def to_inf(param, bounds):
3636
a, b = bounds
3737
# print(f"a,b: {a,b}")
38-
x = (2.0 * param - a) / (b - a) - 1.0
38+
x = 2.0 * (param - a) / (b - a) - 1.0
3939
return jnp.arcsin(x)

0 commit comments

Comments
 (0)
Please sign in to comment.