-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSUBNET_PARAMS.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathSUBNET_PARAMS.json
File metadata and controls
61 lines (61 loc) · 1.69 KB
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
{
"subnet_name": "INVARIANT",
"description": "Deterministic Trust Infrastructure for Bittensor - Cryptographically-verified trust scoring via four-gate receipt verification",
"github_url": "https://github.com/orthonode/invariant",
"subnet_params": {
"tempo": 100,
"immunity_period": 4096,
"min_allowed_weights": 8,
"max_weight_limit": 454,
"adjustment_alpha": 0.1,
"founder_share": 0.12,
"max_regs_per_block": 2,
"min_burn": 1000,
"max_burn": 100000000
},
"network_config": {
"registration_timeout": 300,
"submission_window_blocks": 12,
"max_tasks_per_tempo": 64,
"task_timeout_blocks": 6
},
"trust_config": {
"nts_initial_score": 50.0,
"nts_max_score": 100.0,
"nts_recovery_per_tempo": 0.3,
"nts_catastrophic_threshold": 3,
"nts_violation_decay": 0.95
},
"gate_config": {
"counter_rollback_penalty": "GATE3_REPLAY_DETECTED",
"digest_mismatch_penalty": "GATE4_DIGEST_MISMATCH",
"unauthorized_agent_penalty": "GATE1_AGENT_NOT_AUTHORIZED",
"unapproved_model_penalty": "GATE2_MODEL_NOT_APPROVED"
},
"task_types": [
{
"name": "hash",
"description": "SHA-256 hash computation",
"verification": "deterministic",
"weight": 1.0
},
{
"name": "math",
"description": "Mathematical proofs and computations",
"verification": "deterministic",
"weight": 1.0
},
{
"name": "logic",
"description": "Logical deduction problems",
"verification": "deterministic",
"weight": 1.0
},
{
"name": "code",
"description": "Code generation with test verification",
"verification": "deterministic",
"weight": 1.0
}
]
}