Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/validator_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ pm2 start validator.config.js -- --ewma.window_days 10

Negative beta to give higher weight to lower scores for the 1h prompt

Default: `-0.05`
Default: `-0.2`

Example:

Expand All @@ -332,7 +332,7 @@ module.exports = {
name: "validator",
interpreter: "python3",
script: "./neurons/validator.py",
args: "--softmax.beta -0.05",
args: "--softmax.beta -0.2",
env: {
PYTHONPATH: ".",
},
Expand All @@ -344,7 +344,7 @@ module.exports = {
Alternatively, you can add the args directly to the command:

```shell
pm2 start validator.config.js -- --softmax.beta -0.05
pm2 start validator.config.js -- --softmax.beta -0.2
```

<sup>[Back to top ^][table-of-contents]</sup>
Expand Down
2 changes: 1 addition & 1 deletion entrypoint-validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ validator_coldkey_name=validator
validator_hotkey_name=default

ewma_window_days=10
softmax_beta=-0.05
softmax_beta=-0.2

log_id_prefix=my_validator_name

Expand Down
2 changes: 1 addition & 1 deletion synth/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def add_validator_args(_, parser: argparse.ArgumentParser):
"--softmax.beta",
type=float,
help="Negative beta to give higher weight to lower scores.",
default=-0.05,
default=-0.2,
)


Expand Down
2 changes: 1 addition & 1 deletion synth/validator/prompt_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ class PromptConfig:
"0_60min_gaps": 3600,
},
window_days=1,
softmax_beta=-0.05,
softmax_beta=-0.2,
smoothed_score_coefficient=0.5,
)
2 changes: 1 addition & 1 deletion validator.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
name: "validator",
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 --ewma.window_days 10 --softmax.beta -0.05",
args: "--netuid 50 --logging.debug --wallet.name validator --wallet.hotkey default --neuron.axon_off true --neuron.vpermit_tao_limit 999999 --softmax.beta -0.2",
env: {
PYTHONPATH: ".",
},
Expand Down
2 changes: 1 addition & 1 deletion validator.test.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
name: "validator",
interpreter: "python3",
script: "./neurons/validator.py",
args: "--netuid 247 --logging.debug --logging.trace --subtensor.network test --wallet.name validator --wallet.hotkey default --neuron.axon_off true --ewma.window_days 10 --softmax.beta -0.05",
args: "--netuid 247 --logging.debug --logging.trace --subtensor.network test --wallet.name validator --wallet.hotkey default --neuron.axon_off true --softmax.beta -0.2",
env: {
PYTHONPATH: ".",
},
Expand Down