Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Bidding Algorithms Benchmark — First-Price Auctions
|
| 2 |
|
| 3 |
> **Complete comparison framework for real-time bidding (RTB) algorithms in online advertising.**
|
|
@@ -315,3 +319,23 @@ bidding_algorithms_benchmark/
|
|
| 315 |
4. **Real market price data** — integrate iPinYou dataset (bid logs with actual competing bids)
|
| 316 |
5. **TorchSurv integration** — replace empirical CDF with contextual win probability model
|
| 317 |
6. **Non-stationary evaluation** — add distribution shift scenarios from paper 2505.02796
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# Bidding Algorithms Benchmark — First-Price Auctions
|
| 6 |
|
| 7 |
> **Complete comparison framework for real-time bidding (RTB) algorithms in online advertising.**
|
|
|
|
| 319 |
4. **Real market price data** — integrate iPinYou dataset (bid logs with actual competing bids)
|
| 320 |
5. **TorchSurv integration** — replace empirical CDF with contextual win probability model
|
| 321 |
6. **Non-stationary evaluation** — add distribution shift scenarios from paper 2505.02796
|
| 322 |
+
|
| 323 |
+
<!-- ml-intern-provenance -->
|
| 324 |
+
## Generated by ML Intern
|
| 325 |
+
|
| 326 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 327 |
+
|
| 328 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 329 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 330 |
+
|
| 331 |
+
## Usage
|
| 332 |
+
|
| 333 |
+
```python
|
| 334 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 335 |
+
|
| 336 |
+
model_id = 'hamverbot/bidding_algorithms_benchmark'
|
| 337 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 338 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 339 |
+
```
|
| 340 |
+
|
| 341 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|