warpgbm 0.1.24__tar.gz → 0.1.25__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {warpgbm-0.1.24/warpgbm.egg-info → warpgbm-0.1.25}/PKG-INFO +5 -1
  2. {warpgbm-0.1.24 → warpgbm-0.1.25}/README.md +4 -0
  3. {warpgbm-0.1.24 → warpgbm-0.1.25}/pyproject.toml +1 -1
  4. warpgbm-0.1.25/version.txt +1 -0
  5. {warpgbm-0.1.24 → warpgbm-0.1.25/warpgbm.egg-info}/PKG-INFO +5 -1
  6. warpgbm-0.1.24/version.txt +0 -1
  7. {warpgbm-0.1.24 → warpgbm-0.1.25}/LICENSE +0 -0
  8. {warpgbm-0.1.24 → warpgbm-0.1.25}/MANIFEST.in +0 -0
  9. {warpgbm-0.1.24 → warpgbm-0.1.25}/setup.cfg +0 -0
  10. {warpgbm-0.1.24 → warpgbm-0.1.25}/setup.py +0 -0
  11. {warpgbm-0.1.24 → warpgbm-0.1.25}/tests/__init__.py +0 -0
  12. {warpgbm-0.1.24 → warpgbm-0.1.25}/tests/numerai_test.py +0 -0
  13. {warpgbm-0.1.24 → warpgbm-0.1.25}/tests/test_fit_predict_corr.py +0 -0
  14. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/__init__.py +0 -0
  15. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/core.py +0 -0
  16. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/cuda/__init__.py +0 -0
  17. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/cuda/best_split_kernel.cu +0 -0
  18. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/cuda/binner.cu +0 -0
  19. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/cuda/histogram_kernel.cu +0 -0
  20. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/cuda/node_kernel.cpp +0 -0
  21. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm/cuda/predict.cu +0 -0
  22. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm.egg-info/SOURCES.txt +0 -0
  23. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm.egg-info/dependency_links.txt +0 -0
  24. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm.egg-info/requires.txt +0 -0
  25. {warpgbm-0.1.24 → warpgbm-0.1.25}/warpgbm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: warpgbm
3
- Version: 0.1.24
3
+ Version: 0.1.25
4
4
  Summary: A fast GPU-accelerated Gradient Boosted Decision Tree library with PyTorch + CUDA
5
5
  License: GNU GENERAL PUBLIC LICENSE
6
6
  Version 3, 29 June 2007
@@ -877,6 +877,7 @@ No installation required — just press **"Open in Playground"**, then **Run All
877
877
  - `threads_per_block`: CUDA threads per block (default: 32)
878
878
  - `rows_per_thread`: Number of training rows processed per thread (default: 4)
879
879
  - `L2_reg`: L2 regularizer (default: 1e-6)
880
+ - `colsample_bytree`: Proportion of features to subsample to grow each tree (default: 1)
880
881
 
881
882
  ### Methods:
882
883
  ```
@@ -918,3 +919,6 @@ WarpGBM builds on the shoulders of PyTorch, scikit-learn, LightGBM, and the CUDA
918
919
 
919
920
  - Adjust gain in split kernel and added support for an eval set with early stopping based on MSE.
920
921
 
922
+ ### v0.1.25
923
+
924
+ - Added `colsample_bytree` parameter and new test using Numerai data.
@@ -189,6 +189,7 @@ No installation required — just press **"Open in Playground"**, then **Run All
189
189
  - `threads_per_block`: CUDA threads per block (default: 32)
190
190
  - `rows_per_thread`: Number of training rows processed per thread (default: 4)
191
191
  - `L2_reg`: L2 regularizer (default: 1e-6)
192
+ - `colsample_bytree`: Proportion of features to subsample to grow each tree (default: 1)
192
193
 
193
194
  ### Methods:
194
195
  ```
@@ -230,3 +231,6 @@ WarpGBM builds on the shoulders of PyTorch, scikit-learn, LightGBM, and the CUDA
230
231
 
231
232
  - Adjust gain in split kernel and added support for an eval set with early stopping based on MSE.
232
233
 
234
+ ### v0.1.25
235
+
236
+ - Added `colsample_bytree` parameter and new test using Numerai data.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "warpgbm"
7
- version = "0.1.24"
7
+ version = "0.1.25"
8
8
  description = "A fast GPU-accelerated Gradient Boosted Decision Tree library with PyTorch + CUDA"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -0,0 +1 @@
1
+ 0.1.25
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: warpgbm
3
- Version: 0.1.24
3
+ Version: 0.1.25
4
4
  Summary: A fast GPU-accelerated Gradient Boosted Decision Tree library with PyTorch + CUDA
5
5
  License: GNU GENERAL PUBLIC LICENSE
6
6
  Version 3, 29 June 2007
@@ -877,6 +877,7 @@ No installation required — just press **"Open in Playground"**, then **Run All
877
877
  - `threads_per_block`: CUDA threads per block (default: 32)
878
878
  - `rows_per_thread`: Number of training rows processed per thread (default: 4)
879
879
  - `L2_reg`: L2 regularizer (default: 1e-6)
880
+ - `colsample_bytree`: Proportion of features to subsample to grow each tree (default: 1)
880
881
 
881
882
  ### Methods:
882
883
  ```
@@ -918,3 +919,6 @@ WarpGBM builds on the shoulders of PyTorch, scikit-learn, LightGBM, and the CUDA
918
919
 
919
920
  - Adjust gain in split kernel and added support for an eval set with early stopping based on MSE.
920
921
 
922
+ ### v0.1.25
923
+
924
+ - Added `colsample_bytree` parameter and new test using Numerai data.
@@ -1 +0,0 @@
1
- 0.1.24
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes