File size: 1,384 Bytes
1df85a0
c15eb50
 
 
 
 
 
 
 
 
 
 
 
1df85a0
c15eb50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
library_name: transformers
pipeline_tag: text-generation
tags:
  - aethersearch
  - agentic-rl
  - search-augmented-generation
  - qwen2
  - sft
  - dpo
  - reinforcement-learning
language:
  - en
---

# AetherSearch

AetherSearch is a search-augmented language model release trained through a
multi-stage post-training pipeline with SFT, DPO, and reinforcement learning.

The released weights are provided in Hugging Face Transformers format and can be
loaded with `AutoModelForCausalLM` and `AutoTokenizer`.

## Files

- `model.safetensors`: model weights.
- `config.json` and `generation_config.json`: Transformers configuration.
- `tokenizer.json`, `tokenizer_config.json`, `vocab.json`, `merges.txt`,
  `added_tokens.json`, and `special_tokens_map.json`: tokenizer assets.
- `MODEL_MANIFEST.sha256`: SHA256 checksums for the uploaded files.

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

repo_id = "muradil211/AetherSearch"

tokenizer = AutoTokenizer.from_pretrained(repo_id)
model = AutoModelForCausalLM.from_pretrained(
    repo_id,
    torch_dtype="auto",
    device_map="auto",
)
```

## Notes

The companion training code is released at:
https://github.com/Muradil-mamat-211/AetherSearch

License and upstream base-model attribution should be set according to the
actual base model and data release terms before wider redistribution.