Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2021-03-08 | model.assess: remove superfluous "by_name" indirection | Daniel Friesel | -93/+69 | |
2021-03-03 | Remove ModelInfo; add info to ModelFunction instead | Daniel Friesel | -23/+17 | |
2021-03-02 | PTAModel: Turn states, transitions, and states_and_transitions into attributes | Daniel Friesel | -27/+26 | |
2021-03-01 | Update tests | Daniel Friesel | -7/+8 | |
2021-03-01 | tests: update for file renames in model db | Daniel Friesel | -2/+2 | |
2021-02-26 | refactor param_info, show splits in analyze-archive output | Daniel Friesel | -9/+9 | |
2021-02-26 | add more complex decisiontree test | Daniel Friesel | -19/+586 | |
2021-02-26 | add simple decisiontree test | Daniel Friesel | -2/+155 | |
2021-02-18 | refactor model generation from Analytic/PTAModel into ModelAttribute class | Daniel Friesel | -12/+34 | |
Iteration over states/transitions and model attributes is no longer hardcoded into most model generation code. This should make support for decision trees and sub-states much easier. | ||||
2021-01-08 | bin/analyze-archive, tests: use transition power, not energy | Daniel Friesel | -32/+158 | |
2020-12-03 | use common energytrace loader code | Daniel Friesel | -12/+12 | |
this also fixes a nasty off-by-one in the barcode loader (now _load_energytrace): wrong: interval_start_timestamp = data[:-1, 0] * 1e-6 correct: interval_start_timestamp = data[1:, 0] * 1e-6 | ||||
2020-12-03 | add tests for energytrace with timer/la | Daniel Friesel | -0/+134 | |
2020-07-15 | Add PTAModel validation and crossvalidation test | Daniel Friesel | -7/+458 | |
2020-07-06 | Rename dfatool.dfatool to dfatool.loader | Daniel Friesel | -1/+1 | |
2020-07-06 | Move ParamFit, PTAModel, AnalyticModel to model.py module | Daniel Friesel | -1/+2 | |
2020-07-03 | AnalyticFunction: Remove _ prefix from public attributes | Daniel Friesel | -9/+9 | |
2020-07-02 | blacken test code | Daniel Friesel | -181/+324 | |
2020-07-02 | Remove verbose arg from tests | Daniel Friesel | -12/+12 | |
2020-04-29 | Use relative module paths. PYTHONPATH=lib bin/... is no longer needed | Daniel Friesel | -1/+1 | |
2019-11-26 | autopep8 | Daniel Friesel | -19/+20 | |
2019-09-20 | test: mark CC1200 test as slow | Daniel Friesel | -1/+3 | |
2019-08-12 | skip CC1200 tests for now | Daniel Friesel | -0/+1 | |
2019-08-12 | CI: Download test data | Daniel Friesel | -14/+14 | |
2019-07-26 | tests: follow unittest naming scheme | Daniel Friesel | -0/+244 | |