Prompt48 commited on
Commit
8d894e6
·
verified ·
1 Parent(s): d8d1fb5

Upload edit\Qwen3-TTS-test\.venv\Lib\site-packages\sklearn\ensemble\_hist_gradient_boosting\meson.build with huggingface_hub

Browse files
edit//Qwen3-TTS-test//.venv//Lib//site-packages//sklearn//ensemble//_hist_gradient_boosting//meson.build ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ hist_gradient_boosting_extension_metadata = {
2
+ '_gradient_boosting': {'sources': [cython_gen.process('_gradient_boosting.pyx')],
3
+ 'dependencies': [openmp_dep]},
4
+ 'histogram': {'sources': [cython_gen.process('histogram.pyx')], 'dependencies': [openmp_dep]},
5
+ 'splitting': {'sources': [cython_gen.process('splitting.pyx')], 'dependencies': [openmp_dep]},
6
+ '_binning': {'sources': [cython_gen.process('_binning.pyx')], 'dependencies': [openmp_dep]},
7
+ '_predictor': {'sources': [cython_gen.process('_predictor.pyx')], 'dependencies': [openmp_dep]},
8
+ '_bitset': {'sources': [cython_gen.process('_bitset.pyx')]},
9
+ 'common': {'sources': [cython_gen.process('common.pyx')]},
10
+ }
11
+
12
+ foreach ext_name, ext_dict : hist_gradient_boosting_extension_metadata
13
+ py.extension_module(
14
+ ext_name,
15
+ ext_dict.get('sources'),
16
+ dependencies: ext_dict.get('dependencies', []),
17
+ subdir: 'sklearn/ensemble/_hist_gradient_boosting',
18
+ install: true
19
+ )
20
+ endforeach