Balazs Kegl

Results 54 comments of Balazs Kegl

OK @maikia @albertcthomas in this case we should add this to this PR: having a ``` no-bagging = True ``` in problem.py should have the same effect as the `no-bagging`...

Calling `ramp-test` from a notebook is as simple as ``` from rampwf.utils import assert_submission assert_submission(submission='starting_kit') ``` This page https://paris-saclay-cds.github.io/ramp-docs/ramp-workflow/advanced/scoring.html now contains two code snippets that you can use to call...

Yes, @albertcthomas is right, but the snippet in the doc is cleaner now. I'm doing this decomposition in every kit now, see for example line 36 here https://github.com/ramp-kits/optical_network_modelling/blob/master/optical_network_modelling_starting_kit.ipynb. This snippet...

1. OK 2. no comment 3. OK. In fact we may put in focus the python call and tell them to use the command line `ramp-test` as a final unit...

> import imp feature_extractor = imp.load_source( '', 'submissions/starting_kit/feature_extractor.py') fe = feature_extractor, FeatureExtractor() classifier = imp.load_source( 'submissions/starting_kit/classifier.py') clf = classifier.Classifier() is to me too complex and should be avoided. We have...

> > ``` > > 3\. I prefer not adding the command line feature if everything can be done from the python call. > > ``` > > is this...

Partial fit for models where eg. number of trees or number of epochs is a hyper. This would be mainly a feature used by hyperopt (killing trainings early) but maybe...

Standardized latex tables computed out of saved scores. Probably two steps: first create all scores (of selected submissions and data labels) into a well-designed pandas table. Then a set of...

Hm, this was done mostly by @jorisvandenbossche if I'm not mistaken. Are you guys @agramfort @DimitriPapadopoulos are planning to use this in an upcoming challenge? In this case I'd review...

@crsegerie where did you see the old command? One problem may be this old doc page, comes up first if I google "ramp-workflow documentation". Can we remove it? https://paris-saclay-cds.github.io/ramp-workflow/