mrs83 commited on
Commit
633d29a
·
verified ·
1 Parent(s): c59c979

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -60,7 +60,7 @@ predicted_dx, confidence = model.full_predict(
60
  print(f"Predicted Diagnosis: {predicted_dx}")
61
  print(f"Confidence: {confidence:.4f}")
62
 
63
- # Example Prediction from a Random Validation Sample from the Dataset
64
  dataset = load_dataset("marmal88/skin_cancer", split="test")
65
  random_sample = dataset.shuffle(seed=42).select(range(1))[0] # Get the first shuffled sample
66
 
 
60
  print(f"Predicted Diagnosis: {predicted_dx}")
61
  print(f"Confidence: {confidence:.4f}")
62
 
63
+ # Example Prediction from a Random Test Sample from the Dataset
64
  dataset = load_dataset("marmal88/skin_cancer", split="test")
65
  random_sample = dataset.shuffle(seed=42).select(range(1))[0] # Get the first shuffled sample
66