Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 committed Jan 9, 2024
1 parent 56c3ad8 commit 1b4767f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


# version must stay on line 22
__version__ = "3.0.8"
__version__ = "3.0.9"
version_split = __version__.split(".")
__spec_version__ = (
(1000 * int(version_split[0]))
Expand Down
2 changes: 1 addition & 1 deletion template/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class StreamPrompting(bt.StreamingSynapse):
)

top_p: float = pydantic.Field(
defalt=0.001,
default=0.001,
title="Max Tokens",
description="Max tokens for text generation. "
"This attribute is immutable and cannot be updated.",
Expand Down
2 changes: 1 addition & 1 deletion validators/image_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, dendrite, config, subtensor, wallet):
self.width = 1024
self.height = 1024
self.quality = "standard"
self.style = "vivid"
self.style = "vivid
self.steps = 30
self.seed = 12345
self.wandb_data = {
Expand Down

0 comments on commit 1b4767f

Please sign in to comment.