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

config #15

Open
Mayar2009 opened this issue Aug 15, 2020 · 0 comments
Open

config #15

Mayar2009 opened this issue Aug 15, 2020 · 0 comments

Comments

@Mayar2009
Copy link

class Config(dict):
def init(self, **kwargs):
super().init(**kwargs)
for k, v in kwargs.items():
setattr(self, k, v)

def set(self, key, val):
    self[key] = val
    setattr(self, key, val)

config = Config(
testing=False,
bert_model_name="bert-base-uncased",
max_lr=3e-5,
epochs=1,
use_fp16=False,
bs=4,
discriminative=False,
max_seq_len=128,
)

what is the importance of function set here , could you please give an example?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant