Example code after updating the new version #150
lucasliunju
started this conversation in
Community | General
Replies: 2 comments
-
Hi, @lucasliunju . Let me test this and get back to you :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, @lucasliunju . I've updated the example and add more details in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I find some function names do not work in the examples after updating the new version.
For example, ColossalAI/examples/vit_b16_imagenet_data_parallel/train.py +80:
optimizer = colossalai.nn.Lamb(model.parameters(), lr=1.8e-2, weight_decay=0.1)
I guess it should be :
optimizer = colossalai.nn.optimizer.Lamb(model.parameters(), lr=1.8e-2, weight_decay=0.1)
Beta Was this translation helpful? Give feedback.
All reactions