Technical Committee

October 10, 2018

 

Priority list for the consortium at Inria, year 2018–2019

 

From the points discussed at the meeting, the Technical Committee is proposing the following list of priorities for the actions of the consortium, to be used by the management team for allocating consortium resources:

 

  1. Faster release cycle & dedicate resources for maintenance.
  2. Benchmark and compliance tests (Intel & Nvidia): scikit-learn-benchmarks → collaboration on PR from Intel to accelerate the set of benchmarks to implement.
  1. Historical benchmark data of the scikit-learn code base will be used to detect performance regression or highlight improvements on the scikit-learn master branch. An action point across different actors is to collaboratively assemble and centralize benchmarks.
  2. The asv (air speed velocity) test suite will also be re-used to collect the metrics for several implementations (e.g. leveraging the alternative implementations in daal4py for intel or cuML for Nvidia), possibly on alternative hardware. The built-in reporting tool of asv does not appear to make it possible to contrast 2 runs of the same benchmark suite with different implementations / hardware but the data is stored in JSON so it should be easy enough to come with our reporting code for this task (e.g. bar plots with matplotlib).

Remark: We will impose that to be able to push to the benchmark dashboard, the code should first pass or not the compatibility test (just check_estimator?)

  1. Tools to compare validity of model between scikit-learn versions (retraining with the same parameters on the same dataset should –in general– yield the same fitted attributes and predictions on a validation set)

→ useful for to check that two alternative implementations of the same model can behave as drop-in replacements. This will also be useful to help automate model lifecycle and productization: handling library upgrade safely (numpy, scipy, BLAS, scikit-learn) and check correctness of exported models (e.g. ONNX runtimes).

  1. Interpretability:
    1. Improving the documentation: tutorial on common pitfalls and good practices.
    2. Make it explicit that interpretability can have different meaning in different contexts for different purpose (ease of debugging and checking bias in training set, transparency of the decision function, gaining knowledge on the underlying data generating process (scientific inference, business insights), explainability of individual decisions for end-users that are impacted by the model decisions…)
    3. Generic meta-estimator for model agnostic aggregate feature importance: remove one feature at a time and do all this in parallel -> permutation tests.
    4. Partial dependence plots for more (all?) models.
    5. Document available 3rd party tools for things that are outside of the scope of scikit-learn (open area for research): shap, LIME, yellowbrick, ELI5.
    6. Add an “invertible” option to hashing vectorizer, so that it is less black box
  2. Confidence interval for predictions (in support) of the algorithms:
    • For a model-agnostic solution: Bootstrap 632+ [Efron ‎1997] + cross_val_predict.
  1. In specific models it can be implemented most efficiently. Right now, the only API is return_std for some model, which may not be well suited.
  1. New GBT model:
    • Binning-based fast training algorithm
  1. Richer losses (Poisson, Gamma, GLM+GBRT).
  2. Quantile regression
  3. Assuming that the new code is simpler that our existing implementation, it would make it possible for advanced users to build business specific regularization logic into the code of the trees (but no guarantee of stability of the internal API).
  1. Quantile regression for linear and GBRT models (check reference on implicit quantile networks)
  2. Better missing data handling.
    • Special bin for missing data in KBinDiscretizer
  1. A specific bin in decision trees
  2. More generally, attention to handling missing data here and there in scikit-learn
  1. Better categorical encoding:
    • Target encoding/Impact encoding.
  1. Stateless one-hot encoder using hashing.
  1. Callback and logging (interruption) monitor progress.
  2. General algorithm computational optimization:
    • Better Cython (using prange and direct BLAS call to scipy).
  1. Continuous improvement of parallel single machine (e.g. better oversubscription handling when composing thread runtimes).
  2. Distributed computing: ongoing effort with dask / dask-ml developers to improve the ability to run scikit-learn efficiently on shared and distributed computing resource and progressively explore how to best deal with high data volumes scenarii (out-of-core / cluster partitioned data)
  1. Sample_props.
  2. Feature names: get_feature_name as added sugar to coefficient and feature importance.
  3. Fostering community and community: in parallel with the effort listed above, fostering technical communication across the community, including developers in partners team is crucial. For this, the foundation should dedicate resources to organize technical sprints, open to any contributor with enough technical expertise and time to contribute meaningfully. A monthly open sprint in Paris will be considered, with presence of at least one of the foundation engineers. Additionally, we will give open technical training (or tutorials) to develop a technically competent community. We will distinguish three kind of sprints:
  • Technical contribution sprints, where the goal is to contribute to the scikit-learn codebase. Participation to such a sprint will be limited to people with experience in contribution to Python data tools
  • Training sprints,
  • Usecase sprints,