Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3226691
Revert "refactor: remove center of excellence"
sgratzl Mar 30, 2021
ccbc65b
Merge branch 'dev' into sgratzl/center-of-excellence
sgratzl Mar 31, 2021
ebd8f0b
docs: fix gitpod.io link
sgratzl Mar 31, 2021
cadfb11
Merge pull request #311 from cmu-delphi/bot/sync-main-dev
sgratzl Apr 16, 2021
7819fab
build(deps): update dependencies and configure dependabot
sgratzl Apr 19, 2021
a4b93a1
Merge remote-tracking branch 'origin/dev' into sgratzl/center-of-exce…
sgratzl Apr 19, 2021
8db1cf5
feat: update team pages
sgratzl Apr 19, 2021
50a7d49
feat: new center of excellence page
sgratzl Apr 19, 2021
f3a315f
build: fix prettier ignore
sgratzl Apr 19, 2021
a6b04af
Merge pull request #314 from cmu-delphi/sgratzl/deps
sgratzl Apr 19, 2021
e2b4350
ci: fix dependabot syntax
sgratzl Apr 19, 2021
d973def
build(deps): update actions/setup-node requirement to v2.1.5
dependabot[bot] Apr 19, 2021
f4991a6
build(deps): update actions/cache requirement to v2.1.5
dependabot[bot] Apr 19, 2021
955b42b
ci: add dependencies to release notes
sgratzl Apr 19, 2021
2c3aeb1
build: ignore dependabot in netlify
sgratzl Apr 19, 2021
09c33c7
Merge pull request #316 from cmu-delphi/dependabot/github_actions/dev…
sgratzl Apr 19, 2021
6ba55f4
Merge pull request #317 from cmu-delphi/dependabot/github_actions/dev…
sgratzl Apr 19, 2021
11a4cb1
style: use full CDC name
sgratzl Apr 19, 2021
adabde9
Merge pull request #315 from cmu-delphi/sgratzl/team_updates
sgratzl Apr 19, 2021
756f877
Merge pull request #292 from cmu-delphi/sgratzl/center-of-excellence
sgratzl Apr 20, 2021
ec138c9
Typo fix
capnrefsmmat Apr 22, 2021
36c6f4c
New vaccine hesitancy blog post
capnrefsmmat Apr 22, 2021
af4f6e0
Fix YAML list
capnrefsmmat Apr 22, 2021
ab9fd64
Fix warnings
capnrefsmmat Apr 22, 2021
4a80133
Soften some language
capnrefsmmat Apr 22, 2021
542dab9
feat: update team page
sgratzl Apr 23, 2021
8b41909
Update to latest data, make requested edits
capnrefsmmat Apr 23, 2021
de7ac7e
feat: add note about flu
sgratzl Apr 23, 2021
bd78e31
fix: use https version when possible
sgratzl Apr 23, 2021
be81a87
Merge pull request #323 from cmu-delphi/sgratzl/about_flu
sgratzl Apr 23, 2021
46c4b2f
fix: typo
sgratzl Apr 23, 2021
1ca25f4
Merge pull request #321 from cmu-delphi/sgratzl/team_updates
sgratzl Apr 23, 2021
b3fcf34
refactor: move to publishing
sgratzl Apr 23, 2021
208971e
Merge pull request #324 from cmu-delphi/sgratzl/publications
sgratzl Apr 23, 2021
674d979
Merge pull request #319 from cmu-delphi/blog/jj
chinandrew Apr 23, 2021
7b35e81
chore: release v2.4.0
chinandrew Apr 23, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
target-branch: dev
schedule:
interval: "weekly"
# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
target-branch: dev
schedule:
interval: "weekly"
1 change: 1 addition & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ categories:
labels:
- "chore"
- "documentation"
- "dependencies"
change-template: "- #$NUMBER $TITLE"
change-title-escapes: '\<*_&`#@'
template: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/blog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 3
- name: Cache Conda
uses: actions/cache@v1
uses: actions/cache@v2.1.5
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda6-${{ hashFiles('environment.yml') }}
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
Rscript ./dependencies.R
- name: Restore Blogdown Cache
uses: actions/cache@v2
uses: actions/cache@v2.1.5
with:
path: |
./blogdown
Expand All @@ -62,10 +62,10 @@ jobs:
./content/blog
./static/blog

- uses: actions/setup-node@v1
- uses: actions/setup-node@v2.1.5
with:
node-version: "12"
- uses: actions/cache@v2
- uses: actions/cache@v2.1.5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/[email protected]
with:
node-version: "14"
- uses: actions/cache@v2
- uses: actions/cache@v2.1.5
with:
path: ~/.npm
key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v2.1.5
with:
node-version: "14"
- name: Extract version
Expand All @@ -43,11 +43,11 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v2.1.5
with:
node-version: "14"
- name: Cache Node.js modules
uses: actions/cache@v2
uses: actions/cache@v2.1.5
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
*.Rmd
*.md
*.jpeg
*.csv
*.ico
*.bib
*.xcf
Expand Down
5 changes: 5 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ relativeURLs = false
name = "Team"
url = "/about/team"
weight = 2
[[menu.main]]
parent = "about"
name = "Center of Excellence"
url = "/about/center-of-excellence"
weight = 3
[[menu.main]]
parent = "about"
name = "Publications"
Expand Down
2 changes: 1 addition & 1 deletion content/about/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Public health authorities (federal, state, local), the healthcare industry, the

### Delphi's milestones

- Since 2013, we've supported U.S. CDC's Influenza Division in advancing and growing a [scientific community around flu forecasting](https://www.cdc.gov/flu/weekly/flusight/index.html). We've been perennial leaders in forecasting accuracy.
- Since 2013, we've supported U.S. CDC's Influenza Division in advancing and growing a [scientific community around flu forecasting](https://www.cdc.gov/flu/weekly/flusight/index.html). We've been [perennial leaders in forecasting accuracy](https://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202014-2018%20Results.pdf).

- Since 2016, we've developed the [Delphi Epidata API]({{< apiref "/" >}}), which provides real-time access to epidemiological surveillance data.

Expand Down
56 changes: 56 additions & 0 deletions content/about/center-of-excellence/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
title: Delphi National Center of Excellence for Epidemic Forecasting
layout: coe
members:
- name: Carnegie Mellon University
group: DELPHI Research Group
link: /
location: Pittsburgh, Pennsylvania, United States
pi:
- ryan # people keys
- roni
- name: Carnegie Mellon University
group: EPP
link: https://www.cmu.edu/epp
location: Pittsburgh, Pennsylvania, United States
pi:
- fischhoff
- name: University of Pittsburgh
group: GSPH
link: https://publichealth.pitt.edu/
location: Pittsburgh, Pennsylvania, United States
pi:
- burke
- panhuis
- name: Harvard University
group: CCDD
link: https://www.hsph.harvard.edu/
location: Cambridge, Massachusetts, United States
pi:
- lipsitch

sisters:
- name: CDC's Influence Division
description: Our funders and collaborators at the [CDC's Influenza Division](https://www.cdc.gov/ncird/flu.html), specially the Influenza Applied Research & Modeling team at the [Epidemiology and Prevention branch](https://www.cdc.gov/hiv/dhap/eb/index.html).
link: https://www.cdc.gov/ncird/flu.html
img: logos/cdc.png
- name: University of Massachusetts Amherst
description: Our sister organization, the [Influenza Forecasting Center of Excellence at UMass Amherst](https://reichlab.io/).
link: https://reichlab.io/
img: logos/reichlab.png

supporters:
- Allegheny County Dept of Health
- Change Healthcare
- DTRA
- Facebook
- Kaiser Permanente Washington Health Research Institute
- Massachusetts Dept of Public Health
- Microsoft Azure
- Pennsylvania Dept. of Health
- Quidel Inc.
- UnitedHealth / Optum
- UPMC
---

The Delphi National Center of Excellence for Influenza Forecasting was established in 2019. It is a CDC funded and CDC-designated center working on advancing influenza forecasting, and enabling and improving the usefulness of forecasts of both seasonal and pandemic influenza. During the 2020 pandemic, the center expanded to include real-time tracking ("nowcasting") and forecasting of COVID-19, giving rise to the COVIDcast project. Our goal is to inform public health responses and policy development at the national, state and local levels. Another goal is to inform and empower the general public, providing trustworthy information and reliable short term forecasts that increase the credibility of and trust in public health authorities.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion content/about/news/headless/2016_12.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ title: Top
category: accomplishment
---

[system took the top spot in the 2015-2016 flu forecasting challenge](https://www.cdc.gov/flu/spotlights/flu-activity-forecasts-2016-2017.htm). ([Results summary](http://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202015-2016%20Results.pdf).)
[system took the top spot in the 2015-2016 flu forecasting challenge](https://www.cdc.gov/flu/spotlights/flu-activity-forecasts-2016-2017.htm). ([Results summary](https://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202015-2016%20Results.pdf).)
2 changes: 1 addition & 1 deletion content/about/news/headless/2017_10.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ category: accomplishment
We did it again! [Our
two systems took the top two spots in the 2016-2017 flu forecasting
challenge (out of 28 submissions).](https://www.cmu.edu/news/stories/archives/2017/september/flu-forecasts.html)
([Results summary](http://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202016-2017%20Results.pdf).)
([Results summary](https://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202016-2017%20Results.pdf).)
2 changes: 1 addition & 1 deletion content/about/news/headless/2018_11.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ category: accomplishment
and yet again! Our forecasting systems took the top
spot each of the three separate flu forecasting challenges of
2017-2018 (out of up to 30 submissions).
([Results summary](http://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202017-2018%20Results.pdf).)
([Results summary](https://www.cs.cmu.edu/~roni/CDC%20Flu%20Challenge%202017-2018%20Results.pdf).)
4 changes: 2 additions & 2 deletions content/about/publications/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ papers:
- title: "Predicting the predictable"
image: predicting.jpg
authors: Rosenfeld
link: https://delphi.cmu.edu/files/PredictingThePredictable_13-04-03.pdf
link: https://www.cmu.edu/delphi-web/publications/PredictingThePredictable_13-04-03.pdf
journal: presentation
year: 2013
- title: "A proposal for standardized evaluation of epidemiological models"
image: evaluation.jpg
authors: Rosenfeld, Grefenstette, Burke
link: http://www.cs.cmu.edu/~roni/standardized-evaluation-of-epi-models-rev-09nov2012.pdf
link: https://www.cs.cmu.edu/~roni/standardized-evaluation-of-epi-models-rev-09nov2012.pdf
journal: White paper
year: 2012
---
Expand Down
12 changes: 4 additions & 8 deletions content/about/team/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ layout: team

{{<team team="core" >}}

## Google Fellows

{{<team team="google" >}}

## Contractors

{{<team team="contractors" >}}

## Advisors

{{<team team="advisors" >}}
Expand All @@ -27,6 +19,10 @@ layout: team

{{<team team="contributors" >}}

## Past Google Fellows

{{<team team="google" >}}

## Past Members

{{<team team="past" >}}
2 changes: 1 addition & 1 deletion content/blog/2021-03-10_c2b.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ heroImageThumb: /blog/images/blog-thumb-c2b-1.jpg # size: 300x200 jpg and webp f
# related:
summary: |
In our partnership with the Allegheny County Health Department,
we explored avariety of solutions to different pressing challenges
we explored a variety of solutions to different pressing challenges
during the pandemic. Cases2Beds was one such tool that came as a
result of rising COVID cases in Allegheny County.

Expand Down
Loading