Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
220839d
add parameter sweeps
rafael-c-nunez Nov 2, 2023
5ebe52c
Update Run_script.R
JHerbeck-IDM Nov 2, 2023
ef14ed1
Merge branch 'making-clusters-with-phylomodels' of https://github.com…
JHerbeck-IDM Nov 2, 2023
55e79c3
add dynamic transmission risk
rafael-c-nunez Nov 3, 2023
8ca3352
Bug in the lambda/transmission_risk_per_act
JHerbeck-IDM Nov 6, 2023
5f34d02
fix bug in transmission_risk_per_act computation
rafael-c-nunez Nov 6, 2023
0d0a135
Update Run_script.R
JHerbeck-IDM Nov 7, 2023
caeef69
Update Run_script.R
JHerbeck-IDM Nov 7, 2023
486b186
add plots for parameter sweeps
Nov 14, 2023
7bb5808
update plots for parameter sweeps
Nov 14, 2023
98185c0
update parameter sweeps figures
Nov 14, 2023
7b5dafe
update parameter sweep plots
Nov 14, 2023
4b5ec1b
update parameter sweep plots
Nov 15, 2023
81adbf6
Bug fixes
JHerbeck-IDM Nov 15, 2023
30dbe57
Merge branch 'making-clusters-with-phylomodels' of https://github.com…
JHerbeck-IDM Nov 15, 2023
573dbb3
test samplesize in parameter sweeps
rafael-c-nunez Nov 16, 2023
46138fc
update parameter sweep plots
rafael-c-nunez Nov 16, 2023
5f51f38
update transmission risk in acute state and code optimizations
Nov 20, 2023
336ebba
update parameter sweeps
Dec 6, 2023
f5f141e
update parameter sweeps
Dec 6, 2023
7baab03
add new parameter sweeps
Dec 7, 2023
149f234
update parameter sweeps for lambda
Dec 7, 2023
e08c6bd
add speed/memory improvements and single-parameter sweeps
Jan 8, 2024
420b9d0
update parameter sweeps
Jan 11, 2024
bf5fa9f
add parameter sweeps
Jan 25, 2024
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
69 changes: 69 additions & 0 deletions clustersim.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Conda environment setup:
# conda env create -f [filename.yml]
#
name: clustersim_20230720
channels:
- defaults
- conda-forge

dependencies:
- python=3.9
- pip

# Core scientific python
- numpy
- scipy
- pandas
- matplotlib
- seaborn

# Numerical libraries
- blas
- mkl

# Machine learning
#- scikit-learn

# R interface
- rpy2
- tzlocal

# Graphs/networks
- networkx
- ete3
#- pygraphviz
#- pydot
#- gdal

# Others
#- numba=0.48
#- optuna
#- openpyxl
#- patsy
#- statsmodels
#- tornado
#- xlrd

# More dependencies (via pip)
- pip:
#- pydoe
#- pydoe2
#- pycuda
#- sciris
#- gunicorn
#- scikit-cuda
- jupyter
- jupyter-core
- jupyter-console
- jupyter-client
#- optuna
#- tables
#- wand
#- wandb
#- unittest-xml-reporting
#- "--editable=git+https://github.com/amath-idm/covasim.git#egg=covasim"
#- "--editable=git+https://github.com/amath-idm/synthpops.git@master#egg=synthpops"
#- git+https://github.com/rnunez-IDM/history_matching_demos.git@master
#- "--editable=git+https://github.com/InstituteforDiseaseModeling/phyloModels@master#egg=phylomodels"
#- git+https://github.com/InstituteforDiseaseModeling/history_matching.git@master
- "--editable=git+https://github.com/ghart-IDM/HIVclusteringExample@clustering#egg=hivclusteringexample"
68 changes: 34 additions & 34 deletions python/01_test_simulator.ipynb

Large diffs are not rendered by default.

664 changes: 616 additions & 48 deletions python/07_cluster_stats_sweeps.ipynb

Large diffs are not rendered by default.

Loading