Based on the Pytorch-Transformers library by HuggingFace. To be used as a starting point for employing Transformer models in text classification tasks. Contains code to easily train BERT, XLNet, RoBERTa, and XLM models for text classification.
I am trying to set reprocess_input_data to True so as to avoid overwriting the features. I do it using the following commands but it still creates a new feature file every time I run the file:
Hi,
I am trying to set reprocess_input_data to True so as to avoid overwriting the features. I do it using the following commands but it still creates a new feature file every time I run the file:
python filename.py reprocess_input_data=True [or] python filename.py --reprocess_input_data=True [or] python filename.py reprocess_input_data True [or] python filename.py --reprocess_input_data True
Thanks!