–input-dataset generative-ai-authorship-verification-panclef-2025/pan25-generative-ai-detection-smoke-test-20250428-training --image pan-2025-ben-v2
–command ‘python main.py --input_file $inputDataset/dataset.jsonl --output_dir $outputDir’ `
–push true
and pushed - im assuming that the software shows up on the tira site and i make a submission? When i check the docker submission instructions page (TIRA) and click next i dont go to page 3 it sends me back
#2 when running the command above i tried to push, but got a timeout error - im trying to run an offline version of Roberta Large and my image is about 7gb - is there a size limit? How do i get around this - i was able to get a prediction.jsonl on the test set
#3 i tried to use gpu when running the local test
device = torch.device(“cuda” if torch.cuda.is_available() and args.use_gpu else “cpu”)
but from the output log it looks like gpu is not utilized
Perfect, for the cuda thing, the easiest option is to start from an image that already has it installed (otherwise installing cuda easily gets difficult), e.g., for the generative-authorship-verification baseline, we used:
FROM nvcr.io/nvidia/cuda:12.8.0-cudnn-devel-ubuntu24.04