mirror of
https://github.com/facebookresearch/blt.git
synced 2025-02-23 13:32:14 +00:00
11 lines
191 B
Python
11 lines
191 B
Python
|
from bytelatent.args import TrainArgs, parse_args
|
||
|
|
||
|
|
||
|
def main():
|
||
|
train_args = parse_args(TrainArgs)
|
||
|
print(train_args.model_dump_json(indent=4))
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|