* remove `import enable_hist_gradient_boosting` because it's not needed since skl 1.0
* remove the `except` part and use `n_features_in_` for HistGradientBoosting
* use `var_` instead of `sigma_` because it was deprecated in skl 1.0 and will be removed in skl 1.2
* Use `algorithm=lloyd` for KMeans instead of `algorithm=full/auto`
* Use `csr_matrix` from the `scipy.sparse` namespace because the `scipy.sparse.csr` namespace is deprecated.
* Use `loss='log_loss'` instead of `loss='log'` because it was deprecated in v1.1 and will be removed in version 1.3.
* Use `eigenvalues_` instead of `lambdas_` because it was deprecated in version 1.0 and will be removed in 1.2.
* Use `eigenvectors_` instead of `alphas_` because it was deprecated in version 1.0 and will be removed in 1.2.
* introducing BatchContainer
* BatchContainer basic functionality done
* pass test_input to _convert
* introduce convert_batch API
* use convert_batch in the benchmark
* store _batch_size attribute
* test working
* run black, add concat output option, fix benchmark
* fix getattr
* fix operator benchmark
* support transform and decision function
* make sure input is tuple not list
* fix torch backend prediction
* begin fixing tests
* squeeze and ravel on onnx regression output
* all tests in test_extra_conf.py working
* restore BATCH_SIZE and k neighbor test
* fix onnxml test
* run black on test_extra_conf.py
* fix test_sklearn_normalizer_converter.py
* fix test_lightgbm_converter.py
* fixing more onnxml tests
* fixed remaining onnxml tests
* use format, fix pylint
* fix typo
* add document
* add missing doc
* fix typo
* doc update, remove unused stuff
* add containers for onnx models
* add tvm_installed, initial work on topology
* add containers
add tvm backend to supported
add few tests
* fix type error in TVM
tree_trav and perf_tree_trav now work
* Add TVM_MAX_FUSE_DEPTH option
Add BATCH_SIZE option
Tree trav generate indexes based on batch size (if available)
TVM takes the max fuse detph configuration if set
* add benchmark code for trees
* device can be added directly to convert
* add code for tvm
* refactoring of the tree benchmark files
* add operators scripts
few fixes in the tree bench