ycwhencpp's picture
Sync repo: updated train_grpo notebook for training run
5e9fb2f verified
raw
history blame contribute delete
243 Bytes
import argparse
from certifi import contents, where
parser = argparse.ArgumentParser()
parser.add_argument("-c", "--contents", action="store_true")
args = parser.parse_args()
if args.contents:
print(contents())
else:
print(where())