File size: 1,785 Bytes
0630244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6965b7b
 
 
 
0630244
 
 
 
 
 
 
6965b7b
0630244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
library_name: newsrex
tags:
- news-recommendation
- unknown
- jax
- mind
datasets:
- mind
license: apache-2.0
---

# NewsReX unknown β€” JAX β€” MIND-small

unknown news recommendation model trained on MIND-small using the
[NewsReX](https://github.com/igor17400/NewsReX) framework (JAX).

## Test Results

| Seed | AUC | MRR | NDCG@5 | NDCG@10 |
|------|-----|-----|--------|---------|
| 123 * | 0.6747 | 0.3214 | 0.3556 | 0.4193 |
| 42 | 0.6716 | 0.3195 | 0.3534 | 0.4178 |
| 456 | 0.6738 | 0.3198 | 0.3547 | 0.4184 |
| **mean Β± std** | **0.6734Β±0.0013** | **0.3202Β±0.0009** | **0.3546Β±0.0009** | **0.4185Β±0.0006** |

\* Best seed (weights at repo root)

## Repository Structure

```
newsrex/unknown-JAX-MIND-small/
β”œβ”€β”€ model.safetensors          ← best seed (123)
β”œβ”€β”€ test_results.json
β”œβ”€β”€ training_run_summary.json
β”œβ”€β”€ seed_123/model.safetensors
β”œβ”€β”€ seed_42/model.safetensors
β”œβ”€β”€ seed_456/model.safetensors
└── README.md
```

## Usage

```bash
git clone https://github.com/igor17400/NewsReX.git
cd NewsReX && uv sync

# Run evaluation with best seed weights
uv run python src/eval.py \
    experiment=mind/unknown \
    framework=jax \
    weights=hf://newsrex/unknown-JAX-MIND-small/model.safetensors

# Run evaluation with a specific seed
uv run python src/eval.py \
    experiment=mind/unknown \
    framework=jax \
    weights=hf://newsrex/unknown-JAX-MIND-small/seed_42/model.safetensors
```

## Citation

```bibtex
@misc{newsrex2026,
  title={NewsReX: An Open-Source Multi-Framework for Neural News Recommendation},
  author={Igor L. R. Azevedo and Toyotaro Suzumura and Yuichiro Yasui},
  year={2025},
  eprint={2508.21572},
  archivePrefix={arXiv},
  primaryClass={cs.IR},
  url={https://arxiv.org/abs/2508.21572},
}
```