-
Notifications
You must be signed in to change notification settings - Fork 2
Draft model description table #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,8 @@ | ||||||
| | Model name | Description | Citation | Data Sources | Locations | Output Type | Ensemble? | | ||||||
| |------------|-------------|----------|--------------|-----------|-------------|-----------| | ||||||
| | Hub-baseline | A Bayesian multinomial logistic regression model that makes predictions at the national level. This model uses a linear in logit space model for the growth of the variants and makes the same predictions for each state. | [citation] | NextStrain | All | Point and probabilistic | No | | ||||||
| | UMass-HMLR | A Bayesian hierarchical multinomial logistic regression (HMLR) model for nowcasting COVID variants. Regression coefficients are modeled hierarchically across variants and locations. | [citation] | NextStrain | All | Point and probabilistic | No | | ||||||
| | UGA-multicast | A multinomial logistic regression model with no fancy features for nowcasting COVID-19 variants. | Feng, Y., Goldberg, E. E., Kupperman, M., Zhang, X., Lin, Y., and Ke, R. (2024). CovTransformer: A transformer model for SARS-CoV-2 lineage frequency forecasting. Virus Evolution, to appear. | NextStrain | All | Probabilistic | No | | ||||||
| | LANL-CovTransformer | CovTransformer is a streamlined single-layer transformer architecture augmented with linear input and output layers, using embedding dimensions of 8 and dual attention heads. CovTransformer is an integrated ensemble of models, which first makes a 14 day prediction using 5 models (Stage 1 models). | Feng, Y., Goldberg, E. E., Kupperman, M., Zhang, X., Lin, Y., and Ke, R. (2024). CovTransformer: A transformer model for SARS-CoV-2 lineage frequency forecasting. Virus Evolution, to appear. | NextStrain for inference, GISAID for training | All | Point | No | | ||||||
|
||||||
| | LANL-CovTransformer | CovTransformer is a streamlined single-layer transformer architecture augmented with linear input and output layers, using embedding dimensions of 8 and dual attention heads. CovTransformer is an integrated ensemble of models, which first makes a 14 day prediction using 5 models (Stage 1 models). | Feng, Y., Goldberg, E. E., Kupperman, M., Zhang, X., Lin, Y., and Ke, R. (2024). CovTransformer: A transformer model for SARS-CoV-2 lineage frequency forecasting. Virus Evolution, to appear. | NextStrain for inference, GISAID for training | All | Point | No | | |
| | LANL-CovTransformer | CovTransformer is a streamlined single-layer transformer architecture augmented with linear input and output layers, using embedding dimensions of 8 and dual attention heads. CovTransformer is an integrated ensemble of models, which first makes a 14-day prediction using 5 models (Stage 1 models). | Feng, Y., Goldberg, E. E., Kupperman, M., Zhang, X., Lin, Y., and Ke, R. (2024). CovTransformer: A transformer model for SARS-CoV-2 lineage frequency forecasting. Virus Evolution, to appear. | NextStrain for inference, GISAID for training | All | Point | No | |
🧰 Tools
🪛 LanguageTool
[uncategorized] ~6-~6: When a number forms part of an adjectival compound, use a hyphen.
Context: ...ensemble of models, which first makes a 14 day prediction using 5 models (Stage 1 mode...
(MISSING_HYPHEN)
🤖 Prompt for AI Agents
In @docs/model_description_table.md around line 6, The table entry for
LANL-CovTransformer has two issues: use "14-day prediction" (hyphenate the
compound adjective) and resolve the ensemble mismatch between the description
and the "Ensemble?" column; update either the description for
"LANL-CovTransformer" to clarify that the model is an internal multi-stage
ensemble (e.g., "an integrated multi-stage ensemble of 5 Stage 1 models used to
produce a 14-day prediction") or change the "Ensemble?" column to "Yes" if it
should indicate internal ensemble status so the description and the "Ensemble?"
column are consistent.
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
# First, locate and examine the file
find . -name "model_description_table.md" -type fRepository: epiforecasts/evalvariantnowcasthub
Length of output: 111
🏁 Script executed:
# Read the file with line numbers to examine the content around line 8
cat -n docs/model_description_table.md | head -20Repository: epiforecasts/evalvariantnowcasthub
Length of output: 2932
Fix the malformed description in the CADPH-CATaLog entry.
The description field contains an unclosed quotation mark and mixes model description with citation text and version notes, resulting in corrupted markdown. The text should provide only a coherent description of the model, separate from the Citation column which already contains the reference.
Correct the entry to follow the format of other rows (e.g. CADPH-CATaMaran on the preceding line), with a clear description in the Description column only.
🤖 Prompt for AI Agents
In @docs/model_description_table.md around line 8, The CADPH-CATaLog table row
has a malformed Description cell mixing citation/version notes and an unclosed
quote; replace the Description content for the CADPH-CATaLog entry so it
contains only a concise model description (e.g., "Fits a logistic growth
function to estimate variant frequency over time") and move any citation/version
details back to the Citation or Notes column if needed; update the CADPH-CATaLog
row to match the format/style of the CADPH-CATaMaran row so the Description
column is clean and markdown is valid.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing citations placeholders require community contribution.
Lines 3 and 4 contain
[citation]placeholders for Hub-baseline and UMass-HMLR. As noted in the PR description, these are awaiting contributions from co-authors. Please ensure citation details are collected and merged before this documentation is published to users.I can help format and validate citations once the details are provided. Would you like me to generate a template or checklist to help collect these from the respective teams?
🤖 Prompt for AI Agents