Skip to content

Commit

Permalink
Merge pull request #147 from exalearn/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
rvinaybharadwaj authored Apr 8, 2021
2 parents 167b2c8 + 4df49a5 commit 5f5b998
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
38 changes: 19 additions & 19 deletions config/env_cfg/ExaCovid-v0.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
'COVID-Run': {
'app': '/home/schr476/exalearn/corvid/code/corvid'.
'census_data_dir':'/home/schr476/exalearn/corvid/corviddata'
"COVID-Run": {
"app": "/home/schr476/exalearn/corvid/code/corvid",
"census_data_dir":"/home/schr476/exalearn/corvid/corviddata"
},
'COVID-Init': {
'label': 'example-seattle-26',
'datafile': 'seattle',
'R0': '2.6',
'runlength': '21',
'summaryfilename': 'Summary-seattle26.txt',
'logfilename': 'Log-seattle26.txt',
'tractfilename': 'Tracts-seattle26.txt',
'individualfilename': 'Individuals-seattle26.txt',
'individualfile': '1',
'randomnumberseed': '1',
'seedinfected': '5',
'seedinfecteddaily': '0',
'responseday:': '0',
'workfromhome': '0',
'workfromhomedays':'10000'
"COVID-Init": {
"label": "example-seattle-26",
"datafile": "seattle",
"R0": 2.6,
"runlength": 21,
"summaryfilename": "Summary-seattle26.txt",
"logfilename": "Log-seattle26.txt",
"tractfilename": "Tracts-seattle26.txt",
"individualfilename": "Individuals-seattle26.txt",
"individualfile": 1,
"randomnumberseed": 1,
"seedinfected": 5,
"seedinfecteddaily": 0,
"responseday:": 0,
"workfromhome": 0,
"workfromhomedays": 10000
}
}
10 changes: 5 additions & 5 deletions envs/env_vault/ExaCOVID.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
# for the
# UNITED STATES DEPARTMENT OF ENERGY
# under Contract DE-AC05-76RL01830
from pydemic.data.united_states import nyt, get_population, get_age_distribution
from pydemic import MitigationModel
from pydemic.models.seirpp import SimulationResult
from pydemic.models import SEIRPlusPlusSimulation
import gym
from gym import spaces
import numpy as np
import pandas as pd
import os
import sys

sys.path.append(os.path.dirname(__file__) + '/pydemic/')
from pydemic.data.united_states import nyt, get_population, get_age_distribution
from pydemic import MitigationModel
from pydemic.models.seirpp import SimulationResult
from pydemic.models import SEIRPlusPlusSimulation
import gym


class ExaCOVID(gym.Env):
Expand Down

0 comments on commit 5f5b998

Please sign in to comment.