rkrish999

Results 1 issues of rkrish999

CURRENT CODE ```python #Create dataframe with validation sentences and best performing model predictions val_df = pd.DataFrame({"text": val_sentences, "target": val_labels, "pred": model_6_pretrained_preds, "pred_prob": tf.squeeze(model_6_pretrained_pred_probs)}) val_df.head() # Find the wrong predictions and...