But I don't see a pretrained model in there, so I'm not sure what to pass as `your_nli_model_name`:
python3 src/nl_to_fol.py --model_name <your_model_name> --nli_model_name <your_nli_model_name> --run_name <run_name> --dataset --length
It would have been a lot cooler if this was set up as a pretrained model using RL to translate.
https://github.com/lovishchopra/NL2FOL/blob/4635a81f216da2ad...
nli_tokenizer = AutoTokenizer.from_pretrained(args.nli_model_name) nli_model = AutoModelForSequenceClassification.from_pretrained(args.nli_model_name)
But I don't see a pretrained model in there, so I'm not sure what to pass as `your_nli_model_name`: