You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon running the "Train your own medical Q&A retrieval model" colab notebook I found that even though the pandas dataframe can read the file in "data/sampleData.csv" but running the
"d = create_dataset_for_bert(
'data/sampleData.csv', tokenizer=tokenizer, batch_size=batch_size,
shuffle_buffer=500000, dynamic_padding=True, max_seq_length=max_seq_len)"
gives an output of "TF record not found"
Also if "d" is printed we can see that all the attributes like question id or question mask etc have none in their value and the end result of running the last cell on the notebook results in a "value error: empty training data"
How can I fix this?
The text was updated successfully, but these errors were encountered:
Upon running the "Train your own medical Q&A retrieval model" colab notebook I found that even though the pandas dataframe can read the file in "data/sampleData.csv" but running the
"d = create_dataset_for_bert(
'data/sampleData.csv', tokenizer=tokenizer, batch_size=batch_size,
shuffle_buffer=500000, dynamic_padding=True, max_seq_length=max_seq_len)"
gives an output of "TF record not found"
Also if "d" is printed we can see that all the attributes like question id or question mask etc have none in their value and the end result of running the last cell on the notebook results in a "value error: empty training data"
How can I fix this?
The text was updated successfully, but these errors were encountered: