Skip to content

Commit 4a169b6

Browse files
rebase with paper/benchmarks and finalizing benchmakrs
1 parent 392ba91 commit 4a169b6

9 files changed

Lines changed: 2164 additions & 32 deletions

File tree

paper/paper.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ tags:
88
- uncertainty quantification
99
authors:
1010
- name: Vyron Arvanitis
11+
orcid: 0009-0001-2290-5084
1112
equal-contrib: true
1213
affiliation: 1
14+
email: vyronas.arvanitis@gmail.com
1315
- name: Angelos Aslanidis
1416
orcid: 0009-0009-6699-2691
1517
equal-contrib: true
@@ -82,11 +84,16 @@ regressor = BdeRegressor(
8284
regressor.fit(x=X_train, y=y_train)
8385

8486
means, sigmas = regressor.predict(X_test, mean_and_std=True)
85-
mean, intervals = regressor.predict(X_test, credible_intervals=[0.1, 0.9])
87+
means, intervals = regressor.predict(X_test, credible_intervals=[0.1, 0.9])
8688
raw = regressor.predict(X_test, raw=True)
8789
```
90+
8891
Classification follows analogously using `BdeClassifier`.
8992

93+
# Benchmark for Regression
94+
95+
<!-- TBD -->
96+
9097
# AI usage
9198

9299
Generative AI was used for smart code autocompletion via GitHub Copilot, using the Claude Sonnet 3.7 and Claude Sonnet 4 models. Its use was limited to local, line- or block-level completion during software development. Further Codex was used to assist in the generation of the first draft of the package documentation and for few refactors ensuring the compatibility with the `scikit-learn` API. No AI tools were used for ideation, architectural or design decisions, code review or testing strategy. All generated suggestions were critically reviewed, modified where necessary, and fully validated by the authors, who retain complete responsibility for the correctness, originality, licensing compliance, and ethical integrity of all materials.

scripts/airfoil/architecture.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ xgb.XGBRegressor(
2828
tree_method="hist",
2929
n_estimators=2000,
3030
learning_rate=0.05,
31+
subsample=0.8,
3132
max_depth=6,
3233
random_state=seed,
3334
)

scripts/airfoil/results.csv

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ airfoil,rf,1,0.2629648316900271,0.08320355764922648,0.9314174088649452
44
airfoil,rf,2,0.2626142321588769,0.08186941172420922,0.932800805196166
55
airfoil,rf,3,0.2651418412585877,0.09144818704596017,0.9378628369886428
66
airfoil,rf,4,0.2706200458877758,0.11189904662337234,0.9315889999270439
7-
airfoil,xgb,0,0.201022207736969,-0.18540139712257897,4.04983551800251
8-
airfoil,xgb,1,0.201022207736969,-0.18540139712257897,3.3374153377953917
9-
airfoil,xgb,2,0.201022207736969,-0.18540139712257897,2.934643105836585
10-
airfoil,xgb,3,0.201022207736969,-0.18540139712257897,3.2989675868302584
11-
airfoil,xgb,4,0.201022207736969,-0.18540139712257897,3.430911511881277
7+
airfoil,xgb,0,0.1911470890045166,-0.23577354200568518,1.0079011999769136
8+
airfoil,xgb,1,0.19747740030288696,-0.20319265487405683,1.0418417999753729
9+
airfoil,xgb,2,0.19886420667171478,-0.19619454380656484,1.0558768000919372
10+
airfoil,xgb,3,0.20475415885448456,-0.16700672113076545,1.0535908000310883
11+
airfoil,xgb,4,0.20543842017650604,-0.1636705030501022,1.0588497000280768
1212
airfoil,linear,0,0.6867813467979431,1.0431992708559026,0.0020498689264059067
1313
airfoil,linear,1,0.6867813467979431,1.0431992708559026,0.000771824037656188
1414
airfoil,linear,2,0.6867813467979431,1.0431992708559026,0.00073277298361063

0 commit comments

Comments
 (0)