Romesh Abeysuriya
Romesh Abeysuriya
@gwincr11 Thanks a lot for the optimizations, very much appreciate it! Doing it in parallel would definitely give a significant boost :) Hope you have a great vacation!
Thanks @alex-treebeard I haven't seen treebeard before and it looks like a useful project! For our use case though, we already have CI setup in Azure Pipelines that handles our...
I've been getting a related error with code such as ```python entries = db.session.execute(s, bind=db.get_engine(bind="name")).all() ``` which works with sqlalchemy 1.3.24 but fails with sqlalchemy 1.4.31 with ``` TypeError: get_bind()...
@f-zl Thanks, this resolved the issue for me as well - Windows 11, using WSL1 Ubuntu 22.04 installing Python 3.12 in conda. Pinging websites was fine, my other conda environment...
Jeremy Howard had a nice implementation (https://twitter.com/jeremyphoward/status/955136770806444032) that we use in Covasim Victoria (https://github.com/optimamodel/covasim_aus_schools/blob/d88d915d03d3e60d87a597a38273e3cf90e8a89f/covasim_aus_schools/population.py#L1414) - it's a great method!
``` arrdict = dict() for col in df.columns: arrdict[col] = df[col].values ``` could also be done as `dict(zip(df.columns, df.values.T))`. The analogous operation where you want to turn rows into arrays...