Abandoned arms and trials are not excluded from modeling data
See original GitHub issuehey guys, thanks for offering such a great lib!
In case I found the data of an already completed arm is invalid, how can I remove it to make sure the model prediction is not effected by this invalid arm?
I tried to abandon this arm like
experiment.trials[0].mark_arm_abandoned(arm_name='0_0')
but seems the abandoned arm is still taken into account in model fit process.
Thanks in advance 😃
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (9 by maintainers)
Top Results From Across the Web
Use of historical control data for assessing treatment effects in ...
With historical data providing information on the control arm, more trial resources can be devoted to the novel treatment while retaining ...
Read more >A roadmap to using historical controls in clinical trials
Historical controls (HCs) can be used for model parameter estimation at the study design phase, adaptation within a study, ...
Read more >The effects of releasing early results from ongoing clinical trials
Most trials do not release interim summaries on efficacy and toxicity of the experimental treatments being tested, with this information ...
Read more >Abstract Introduction Exclude Recognition Task Method Experiment ...
If familiarity alone influences the response, Exclude trials may result in ... PTS model, the present pattern of activation data do not explicitly...
Read more >Evaluation of Protease Inhibition for COVID-19 in Standard ...
Study Type : Interventional (Clinical Trial). Actual Enrollment : 1411 participants. Allocation: Randomized. Intervention Model: Parallel Assignment.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Cool, then you can use the Dev API with regular
Experiment
and abandoned trials should work as expected. Let us know if you run into any other issues!There isn’t, actually. I started using
SimpleExperiment
because anExperiment
needs proper coordination ofTrial
,Runner
, andMetric
(was very hard to track at first), and the Service API is hiding the details of underlying steps (I needed decent control over it to match the theory and implementation of my work). I could recently switch toExperiment
after discovering the multi-objective opt tutorial and some hands-on experience. I’m keeping the previous one in case I need a quick implementation, though I didn’t know that you would completely drop it.