Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Chris Jewell
covid19uk
Commits
c6ec2155
Commit
c6ec2155
authored
Jan 25, 2021
by
Chris Jewell
Browse files
Removed tier effects from model.
parent
a8bfee17
Changes
4
Hide whitespace changes
Inline
Side-by-side
covid/model_spec.py
View file @
c6ec2155
...
...
@@ -36,7 +36,7 @@ def gather_data(config):
)
locations
=
data
.
AreaCodeData
.
process
(
config
)
tier_restriction
=
data
.
TierData
.
process
(
config
)[:,
:,
[
0
,
2
,
3
,
4
,
5
]]
tier_restriction
=
data
.
TierData
.
process
(
config
)[:,
:,
[
0
,
2
,
3
,
4
]]
date_range
=
[
date_low
,
date_high
]
weekday
=
(
pd
.
date_range
(
date_low
,
date_high
-
np
.
timedelta64
(
1
,
"D"
)).
weekday
<
5
...
...
@@ -99,17 +99,6 @@ def CovidUK(covariates, initial_state, initial_step, num_steps):
rate
=
tf
.
constant
(
10.0
,
dtype
=
DTYPE
),
)
def
beta3
():
return
tfd
.
Independent
(
tfd
.
Normal
(
loc
=
tf
.
constant
([
0.0
]
*
covariates
[
"L"
].
shape
[
-
1
],
dtype
=
DTYPE
),
scale
=
tf
.
constant
(
[
1.0
]
*
covariates
[
"L"
].
shape
[
-
1
],
dtype
=
DTYPE
),
),
reinterpreted_batch_ndims
=
1
,
)
def
sigma
():
return
tfd
.
Gamma
(
concentration
=
tf
.
constant
(
2.0
,
dtype
=
DTYPE
),
...
...
@@ -138,9 +127,8 @@ def CovidUK(covariates, initial_state, initial_step, num_steps):
scale
=
tf
.
constant
(
100.0
,
dtype
=
DTYPE
),
)
def
seir
(
beta2
,
beta3
,
xi
,
gamma0
,
gamma1
):
def
seir
(
beta2
,
xi
,
gamma0
,
gamma1
):
beta2
=
tf
.
convert_to_tensor
(
beta2
,
DTYPE
)
beta3
=
tf
.
convert_to_tensor
(
beta3
,
DTYPE
)
xi
=
tf
.
convert_to_tensor
(
xi
,
DTYPE
)
gamma0
=
tf
.
convert_to_tensor
(
gamma0
,
DTYPE
)
gamma1
=
tf
.
convert_to_tensor
(
gamma1
,
DTYPE
)
...
...
@@ -154,9 +142,6 @@ def CovidUK(covariates, initial_state, initial_step, num_steps):
W
=
tf
.
convert_to_tensor
(
tf
.
squeeze
(
covariates
[
"W"
]),
dtype
=
DTYPE
)
N
=
tf
.
convert_to_tensor
(
tf
.
squeeze
(
covariates
[
"N"
]),
dtype
=
DTYPE
)
L
=
tf
.
convert_to_tensor
(
covariates
[
"L"
],
DTYPE
)
L
=
L
-
tf
.
reduce_mean
(
L
,
axis
=
(
0
,
1
))
weekday
=
tf
.
convert_to_tensor
(
covariates
[
"weekday"
],
DTYPE
)
weekday
=
weekday
-
tf
.
reduce_mean
(
weekday
,
axis
=-
1
)
...
...
@@ -169,16 +154,13 @@ def CovidUK(covariates, initial_state, initial_step, num_steps):
dtype
=
tf
.
int64
,
)
xi_
=
tf
.
gather
(
xi
,
xi_idx
)
L_idx
=
tf
.
clip_by_value
(
tf
.
cast
(
t
,
tf
.
int64
),
0
,
L
.
shape
[
0
]
-
1
)
Lt
=
tf
.
gather
(
L
,
L_idx
)
xB
=
tf
.
linalg
.
matvec
(
Lt
,
beta3
)
weekday_idx
=
tf
.
clip_by_value
(
tf
.
cast
(
t
,
tf
.
int64
),
0
,
weekday
.
shape
[
0
]
-
1
)
weekday_t
=
tf
.
gather
(
weekday
,
weekday_idx
)
infec_rate
=
tf
.
math
.
exp
(
xi_
+
xB
)
*
(
infec_rate
=
tf
.
math
.
exp
(
xi_
)
*
(
state
[...,
2
]
+
beta2
*
commute_volume
...
...
@@ -211,7 +193,6 @@ def CovidUK(covariates, initial_state, initial_step, num_steps):
dict
(
beta1
=
beta1
,
beta2
=
beta2
,
beta3
=
beta3
,
sigma
=
sigma
,
xi
=
xi
,
gamma0
=
gamma0
,
...
...
covid/tasks/inference.py
View file @
c6ec2155
...
...
@@ -77,7 +77,6 @@ def mcmc(data_file, output_file, config, use_autograph=False, use_xla=True):
gamma0
=
block0
[
1
],
gamma1
=
block0
[
2
],
sigma
=
block0
[
3
],
beta3
=
tf
.
zeros
([
5
],
dtype
=
DTYPE
),
# block0[4:],
beta1
=
block1
[
0
],
xi
=
block1
[
1
:],
seir
=
events
,
...
...
covid_pipeline.sge
View file @
c6ec2155
#!/bin/bash
#$ -clear
#$ -jsv /usr/shared_apps/packages/sge-8.1.9-gpu/default/common/sge_request.jsv.2.0b
#$ -S /bin/bash
#$ -P chicas
#$ -q gpu
#$ -l ngpus=1
# -l ncpus=4
#$ -l h_vmem=
32
G
#$ -l h_vmem=
64
G
#$ -l h_rt=12:00:00
#$ -j y
#$ -cwd
...
...
enqueue_pipeline.sh
View file @
c6ec2155
...
...
@@ -2,18 +2,18 @@
# Enqueues COVID-19 pipelines
CASES_FILE
=
"data/Anonymised Combined Line List 202101
08
.csv"
COMMUTE_VOL_FILE
=
"data/2101
08
_OFF_SEN_COVID19_road_traffic_national_table.xlsx"
DATE_LOW
=
"2020-10-
1
3"
DATE_HIGH
=
"2021-01-
05
"
CASES_FILE
=
"data/Anonymised Combined Line List 202101
25
.csv"
COMMUTE_VOL_FILE
=
"data/2101
22
_OFF_SEN_COVID19_road_traffic_national_table.xlsx"
DATE_LOW
=
"2020-10-3
0
"
DATE_HIGH
=
"2021-01-
22
"
TEMPLATE_CONFIG
=
template_config.yaml
JSV_SCRIPT
=
/usr/shared_apps/packages/sge-8.1.9-gpu/default/common/sge_request.jsv.2.0b
# Job submisison
switch-gpu
for
PILLAR
in
both 1
2
for
PILLAR
in
both 1
do
for
CASE_DATE_TYPE
in
specimen
do
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment