Bastian Kennel
Bastian Kennel
training is a pd.DataFrame features is a list of column names model = AdaGradRegressor() model.fit(training[features], training['target']) throws ~\Anaconda3\envs\numerai\lib\site-packages\lightning\impl\adagrad.py in fit(self, X, y) 130 def fit(self, X, y): 131 self.outputs_2d_ =...
executing the example ranking code I get the following error. It seems to me a parameter is used that is not supported by xgboost. --------------------------------------------------------------------------- AttributeError Traceback (most recent call...
I have a validation dataset that contains multiple targets. I want to train a regression and have several validation metrics, one for each of the targets in the validation set....
## Summary I have a dataset with a categorical feature that is not used for training, but I would like to use that feature to control how samples are selected...
### Motivation I run a study and afterwards I view the results in optuna dashboard and finally I want to train a few of those trials for future use. What...
https://github.com/simpsus/WordCram/blob/sketches/src/contrib/CSVImporter.java can be given a csv file and two indices. The csv file will then be parsed and a Word[] returned. The csv parsing is handled by the lightweight opencsv...
https://github.com/simpsus/WordCram/blob/sketches/src/contrib/StandardConsoleObserver.java It has a level which configures verbosity, it can give information about: - progress through skipped and drawn words - overall performance through overall timestamps - results through a...
The tango color scheme http://tango.freedesktop.org/static/cvs/tango-art-tools/palettes/Tango-Palette.png is a nice standard set of colors. An enum containing all the colors: https://github.com/simpsus/WordCram/blob/sketches/src/contrib/TangoColorEnum.java A Colorer Iterating through these words based on some strategies: https://github.com/simpsus/WordCram/blob/sketches/src/contrib/TangoWordColorer.java...
The idea is to have two source images. One solid one for the ShapeBasedPlacer to place the words in, and another colored one for the color of the words, in...
If the shape of WordCram could be accessed and given upfront, we could do two (or more) consequtive runs on the same output. With the new Color-aware shape based placer...