Skip to content

Commit

Permalink
version bump to 0.0.4 and default batch_size 2 (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-pfeiffer authored Jul 4, 2023
1 parent 158893c commit 5388fbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app_utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_size(x):
return 2**31


version = "0.0.4-dev"
version = "0.0.4"

try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class ConfigNLPCausalLMTraining(DefaultConfig):
differential_learning_rate_layers: Tuple[str, ...] = ()
differential_learning_rate: float = 0.00001

batch_size: int = 3
batch_size: int = 2
drop_last_batch: bool = True
epochs: int = 1
schedule: str = "Cosine"
Expand Down

0 comments on commit 5388fbd

Please sign in to comment.