You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/miner/README.md
+113Lines changed: 113 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ This guide explains how to **install** and **uninstall** manually the Miner.
25
25
-[Available Components](#available-components)
26
26
-[Monitoring & Logs](#monitoring-and-logs)
27
27
-[Quick Restart](#quick-restart)
28
+
-[View Scores on Wandb](#neuron-wandb-scores)
28
29
-[Per-Component](#per-component)
29
30
-[Redis](#redis)
30
31
-[Metagraph](#metagraph)
@@ -163,6 +164,25 @@ It will restart the Miner's components using the `EXECUTION_METHOD`, which defau
163
164
164
165
<br />
165
166
167
+
# 🔬 View Scores on Wandb <aid="neuron-wandb-scores"></a>
168
+
169
+
In addition to checking local logs, you can also view your Neuron’s challenge scores and activity in the **Wandb dashboards** maintained by the validators.
170
+
171
+
## 🛰️ Validator Dashboard Table
172
+
173
+
Browse the full list of validators and their submissions here:
174
+
👉 [SubVortex Validator Table on Wandb](https://wandb.ai/eclipsevortext/subvortex-team/table?nw=nwusereclipsevortext)
175
+
176
+
## 🔍 View Detailed Validator Run
177
+
178
+
To dive into individual challenge sessions, open a specific validator’s run:
After installing and starting the Neuron, it's essential to verify that your Miner is **externally reachable**. Validators need to connect to both your **Miner** and your **Subtensor** node to send challenges and record results.
361
+
362
+
#### 🔌 1. Check Miner Port Accessibility
363
+
364
+
Verify that port `8091` (used for challenge handling) is accessible from the public internet.
365
+
366
+
From a **remote machine** (not the miner host), run:
367
+
368
+
```bash
369
+
nc -zv <YOUR_MINER_PUBLIC_IP> 8091
370
+
```
371
+
372
+
✅ Expected output:
373
+
374
+
```
375
+
Connection to <YOUR_MINER_PUBLIC_IP> port 8091 [tcp/*] succeeded!
376
+
```
377
+
378
+
> ⚠️ If this fails, check for:
379
+
>
380
+
> - Blocked ports in `ufw`, `iptables`, or cloud security groups
0 commit comments