Skip to content

Commit

Permalink
Hotfix/3.6.2/validator logit parameters (#1057)
Browse files Browse the repository at this point in the history
* additional parameters

* fixed naming to logit divergence

* versioning and fixes

* typo fixes

* bug fixes

* Tests cli fixes (#1058)

* fix btcli list with wallet.path (#1036)

fix path join

* remove mock subtensor and replace with mock calls

* additional fixes

* mock wallet

Co-authored-by: Cameron Fairchild <[email protected]>

* Log prune_len and logits_divergence

* Always get latest prune_len

Co-authored-by: Cameron Fairchild <[email protected]>
Co-authored-by: opentaco <[email protected]>
  • Loading branch information
3 people authored and eduardogr committed Jan 24, 2023
1 parent d278ff5 commit ae8f1e4
Show file tree
Hide file tree
Showing 6 changed files with 893 additions and 59 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.1
3.6.2
2 changes: 1 addition & 1 deletion bittensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
nest_asyncio.apply()

# Bittensor code and protocol version.
__version__ = '4.0.0'
__version__ = '3.6.2'
version_split = __version__.split(".")
__version_as_int__ = (100 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))
__new_signature_version__ = 400
Expand Down
Loading

0 comments on commit ae8f1e4

Please sign in to comment.