Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #237

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,16 @@ julia> Pkg.add("EvoTrees")

## Performance

Data consists of randomly generated `Matrix{Float64}`. Training is performed on 200 iterations. Code to reproduce is [here](https://github.com/Evovest/EvoTrees.jl/blob/main/benchmarks/regressor.jl).
Data consists of randomly generated `Matrix{Float64}`. Training is performed on 200 iterations.
Code to reproduce is availabe in [`benchmarks/regressor.jl`](https://github.com/Evovest/EvoTrees.jl/blob/main/benchmarks/regressor.jl).

EvoTrees: v0.15.0
XGBoost: v2.3.0
Julia v1.9.1

CPU: 12 threads on AMD Ryzen 5900X
GPU: NVIDIA RTX A4000
- Run Environment:
- CPU: 12 threads on AMD Ryzen 5900X.
- GPU: NVIDIA RTX A4000.
- Julia: v1.9.1.
- Algorithms
- XGBoost: v2.3.0 (Using the `hist` algorithm).
- EvoTrees: v0.15.0.

### Training:

Expand All @@ -58,7 +60,7 @@ GPU: NVIDIA RTX A4000

### Inference:

| Dimensions / Algo | XGBoost Hist | EvoTrees | XGBoost GPU | EvoTrees GPU |
| Dimensions / Algo | XGBoost CPU | EvoTrees | XGBoost GPU | EvoTrees GPU |
|---------------------|:------------:|:--------:|:-----------:|:------------:|
| 100K x 100 | 0.151s | 0.053s | NA | 0.036s |
| 500K x 100 | 0.628s | 0.276s | NA | 0.169s |
Expand Down