-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathvalidator.config.js
More file actions
31 lines (31 loc) · 1.26 KB
/
validator.config.js
File metadata and controls
31 lines (31 loc) · 1.26 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
module.exports = {
apps: [
{
name: "validator cycle low",
interpreter: "python3",
script: "./neurons/validator.py",
args: "--netuid 50 --logging.debug --wallet.name validator --wallet.hotkey default --neuron.axon_off true --neuron.vpermit_tao_limit 999999 --softmax.low.beta -0.1 --softmax.high.beta -0.2 --neuron.nprocs 8 --validator.cycle_name low_frequency",
env: {
PYTHONPATH: ".",
},
},
{
name: "validator cycle high",
interpreter: "python3",
script: "./neurons/validator.py",
args: "--netuid 50 --logging.debug --wallet.name validator --wallet.hotkey default --neuron.axon_off true --neuron.vpermit_tao_limit 999999 --softmax.low.beta -0.1 --softmax.high.beta -0.2 --neuron.nprocs 8 --validator.cycle_name high_frequency",
env: {
PYTHONPATH: ".",
},
},
{
name: "validator cycle scoring",
interpreter: "python3",
script: "./neurons/validator.py",
args: "--netuid 50 --logging.debug --wallet.name validator --wallet.hotkey default --neuron.axon_off true --neuron.vpermit_tao_limit 999999 --softmax.low.beta -0.1 --softmax.high.beta -0.2 --neuron.nprocs 8 --validator.cycle_name scoring",
env: {
PYTHONPATH: ".",
},
},
],
};