Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Draft] RWKV LM #207

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
prog
  • Loading branch information
Kyle1668 committed Apr 18, 2023
commit b7b8aec817b6f7360be041e499ea0a0e8db821a2
2 changes: 1 addition & 1 deletion elk/rwkv_lm/rwkv_hf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class RWKVConfig(PretrainedConfig):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.hidden_size = 2048
self.num_hidden_layers = 1
self.num_hidden_layers = 120
self.is_encoder_decoder = False
self.architectures = ["RWKV-LM"]

Expand Down