Max Gardner

Results 12 issues of Max Gardner

The docs describe a `BayesianNetwork.score()` method [here](https://pomegranate.readthedocs.io/en/latest/BayesianNetwork.html#pomegranate.BayesianNetwork.BayesianNetwork.score), but none exists in the code.

Proposed workflow: 1. `activitysim run -c configs -c configs_defaults` where "configs" has only a few model settings .yaml's and a few updated settings in settings.yaml with `inherit_settings: True`. 2. ActivitySim...

Refactor
Usability

Currently ActivitySim command-line input runtime args are handled by `cli.run.handle_standard_args()`, which loads each of them as injectables here: https://github.com/ActivitySim/activitysim/blob/master/activitysim/cli/run.py#L95-L114 Oddly enough, these very same arguments are defined a second time...

Refactor

- updated synthpop for python 3 - updated the census attributes retained in **starter2.py** - updated **ipu.py** so that rather than erroring out when `max_iterations` is reached, it generates a...

The original code I wrote to accommodate a list of tables of interaction terms breaks if the interaction terms aren't a list of dataframes but rather a single dataframe, which...

Haven't dug tooo deep into this to see if its happening for other template types but this is the first time I've seen it. Estimating a `LargeMultinomialLogitStep()` produces a nice...

low priority

I'm suspicious that the new `urbansim_templates.utils.update_column()` method is not functioning properly, or at least only functioning in certain settings, because it definitely _is_ working in some places, but not in...

Not sure if this should be done in choicemodels where the `summary_table()` object in created ([here](https://github.com/UDST/choicemodels/blob/master/choicemodels/mnl.py#L372-L390)) or as a filler in between summary tables in the for loop [here](https://github.com/UDST/urbansim_templates/blob/master/urbansim_templates/models/segmented_large_multinomial_logit.py#L224-L225), but...

This PR fixes a bug in`iterative_lottery_choices()` which creates an empty merged choice table object if/when all rows of alts table are filled and dropped before max capacity is exceeded.

bug

When the `mct_intx_ops` functionality was designed, it was only enabled for the `LargeMultinomialLogitStep` model template, and so that is where the code to actually perform the interaction term operations process...