Spaces:
Sleeping
Sleeping
Gallery -> single-clip selector; rename to Temporal State Prediction
Browse files- .gitattributes +10 -0
- __pycache__/app.cpython-314.pyc +0 -0
- app.py +58 -17
- assets/gallery/fp_int2prem_0_raw.gif +3 -0
- assets/gallery/gallery_manifest.json +60 -0
- assets/gallery/miss_mit2int_0_raw.gif +3 -0
- assets/gallery/miss_prem2int_0_raw.gif +3 -0
- assets/gallery/miss_prem2int_1_raw.gif +3 -0
- assets/gallery/ok_interphase_0_raw.gif +3 -0
- assets/gallery/ok_interphase_1_raw.gif +3 -0
- assets/gallery/ok_mitosis_0_raw.gif +3 -0
- assets/gallery/ok_mitosis_1_raw.gif +3 -0
- assets/gallery/ok_premitosis_0_raw.gif +3 -0
- assets/gallery/ok_premitosis_1_raw.gif +3 -0
.gitattributes
CHANGED
|
@@ -45,3 +45,13 @@ assets/gallery/ok_premitosis_0.gif filter=lfs diff=lfs merge=lfs -text
|
|
| 45 |
assets/gallery/ok_premitosis_1.gif filter=lfs diff=lfs merge=lfs -text
|
| 46 |
assets/videos/state_overlay.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 47 |
assets/videos/trackid.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
assets/gallery/ok_premitosis_1.gif filter=lfs diff=lfs merge=lfs -text
|
| 46 |
assets/videos/state_overlay.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 47 |
assets/videos/trackid.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
assets/gallery/fp_int2prem_0_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
assets/gallery/miss_mit2int_0_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
assets/gallery/miss_prem2int_0_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
assets/gallery/miss_prem2int_1_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
assets/gallery/ok_interphase_0_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
assets/gallery/ok_interphase_1_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
assets/gallery/ok_mitosis_0_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
assets/gallery/ok_mitosis_1_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
assets/gallery/ok_premitosis_0_raw.gif filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
assets/gallery/ok_premitosis_1_raw.gif filter=lfs diff=lfs merge=lfs -text
|
__pycache__/app.cpython-314.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-314.pyc and b/__pycache__/app.cpython-314.pyc differ
|
|
|
app.py
CHANGED
|
@@ -34,7 +34,7 @@ GALLERY = _load_json("gallery/gallery_manifest.json", [])
|
|
| 34 |
|
| 35 |
# ── Header / thesis ───────────────────────────────────────────────────────────
|
| 36 |
HEADER = """
|
| 37 |
-
# 🔬 Temporal
|
| 38 |
**Frozen V-JEPA-2 ViT-L + attentive-pool head → per-cell cell-cycle state**, straight from a tracked clip —
|
| 39 |
no segment→track→**classify** hand-off.
|
| 40 |
|
|
@@ -42,6 +42,44 @@ no segment→track→**classify** hand-off.
|
|
| 42 |
> morphology–temporal baseline, and the binding constraint is **data scale, not model capacity.**
|
| 43 |
"""
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
def _metrics_md() -> str:
|
| 47 |
m = METRICS
|
|
@@ -76,25 +114,28 @@ def _metrics_md() -> str:
|
|
| 76 |
return "\n".join(lines)
|
| 77 |
|
| 78 |
|
| 79 |
-
def _gallery_items():
|
| 80 |
-
items = []
|
| 81 |
-
for g in GALLERY:
|
| 82 |
-
img = ASSETS / "gallery" / g.get("gif", g.get("png", ""))
|
| 83 |
-
if img.exists():
|
| 84 |
-
tag = "✅" if g.get("correct") else "❌"
|
| 85 |
-
items.append((str(img), f"{tag} {g['title']} — {g['caption']}"))
|
| 86 |
-
return items
|
| 87 |
-
|
| 88 |
-
|
| 89 |
def build():
|
| 90 |
-
with gr.Blocks(title="
|
| 91 |
gr.Markdown(HEADER)
|
| 92 |
with gr.Tabs():
|
| 93 |
-
with gr.Tab("①
|
| 94 |
-
gr.Markdown("
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
|
| 99 |
with gr.Tab("② Videos"):
|
| 100 |
gr.Markdown("Whole field-of-view over the held-out sequence.")
|
|
|
|
| 34 |
|
| 35 |
# ── Header / thesis ───────────────────────────────────────────────────────────
|
| 36 |
HEADER = """
|
| 37 |
+
# 🔬 Temporal State Prediction
|
| 38 |
**Frozen V-JEPA-2 ViT-L + attentive-pool head → per-cell cell-cycle state**, straight from a tracked clip —
|
| 39 |
no segment→track→**classify** hand-off.
|
| 40 |
|
|
|
|
| 42 |
> morphology–temporal baseline, and the binding constraint is **data scale, not model capacity.**
|
| 43 |
"""
|
| 44 |
|
| 45 |
+
LABELS3 = ["interphase", "pre-mitosis", "mitosis"]
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def _selector_items():
|
| 49 |
+
"""Neutral clip thumbnails for the bottom selector (no prediction shown)."""
|
| 50 |
+
items = []
|
| 51 |
+
for g in GALLERY:
|
| 52 |
+
img = ASSETS / "gallery" / g.get("raw_gif", g.get("gif", ""))
|
| 53 |
+
if img.exists():
|
| 54 |
+
items.append((str(img), f"cell {g.get('cell_id','?')} · t={g.get('t','?')}"))
|
| 55 |
+
return items
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def _valid_indices():
|
| 59 |
+
return [i for i, g in enumerate(GALLERY)
|
| 60 |
+
if (ASSETS / "gallery" / g.get("raw_gif", g.get("gif", ""))).exists()]
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
def _clip_view(i: int):
|
| 64 |
+
"""Return (image_path, result_markdown) for gallery item i."""
|
| 65 |
+
g = GALLERY[i]
|
| 66 |
+
img = str(ASSETS / "gallery" / g.get("raw_gif", g.get("gif", "")))
|
| 67 |
+
verdict = "✅ **correct**" if g.get("correct") else f"❌ **incorrect** — true state is **{g['true']}**"
|
| 68 |
+
probs = g.get("probs", [])
|
| 69 |
+
bar = " · ".join(f"{LABELS3[k]} {probs[k]:.2f}" for k in range(len(probs))) if probs else ""
|
| 70 |
+
note = ""
|
| 71 |
+
if not g.get("correct"):
|
| 72 |
+
if g["true"] == "pre-mitosis" and g["pred"] == "interphase":
|
| 73 |
+
note = "\n\n*Why it fails: 'pre-mitosis' is a soft, lineage-defined window — this nucleus is morphologically identical to interphase (not yet rounded/condensed).*"
|
| 74 |
+
elif g["true"] == "mitosis":
|
| 75 |
+
note = "\n\n*A missed division — the rare, high-value event the metric weights most.*"
|
| 76 |
+
elif g["pred"] == "pre-mitosis":
|
| 77 |
+
note = "\n\n*Over-called: interphase nucleus flagged as entering division.*"
|
| 78 |
+
md = (f"### Prediction: **{g['pred']}** (confidence {g['conf']:.2f})\n\n"
|
| 79 |
+
f"{verdict}\n\n"
|
| 80 |
+
f"Per-class probability — {bar}{note}")
|
| 81 |
+
return img, md
|
| 82 |
+
|
| 83 |
|
| 84 |
def _metrics_md() -> str:
|
| 85 |
m = METRICS
|
|
|
|
| 114 |
return "\n".join(lines)
|
| 115 |
|
| 116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
def build():
|
| 118 |
+
with gr.Blocks(title="Temporal State Prediction", theme=gr.themes.Soft()) as demo:
|
| 119 |
gr.Markdown(HEADER)
|
| 120 |
with gr.Tabs():
|
| 121 |
+
with gr.Tab("① Classify a clip"):
|
| 122 |
+
gr.Markdown("**Select a single-cell clip below** — the model classifies that one clip into its cell-cycle state.")
|
| 123 |
+
valid = _valid_indices()
|
| 124 |
+
first = valid[0] if valid else 0
|
| 125 |
+
img0, md0 = _clip_view(first) if valid else (None, "_no clips found_")
|
| 126 |
+
with gr.Row():
|
| 127 |
+
sel_clip = gr.Image(value=img0, label="selected clip", height=300)
|
| 128 |
+
sel_md = gr.Markdown(md0)
|
| 129 |
+
selector = gr.Gallery(value=_selector_items(), columns=5, height=200,
|
| 130 |
+
object_fit="contain", label="▼ pick a clip",
|
| 131 |
+
allow_preview=False)
|
| 132 |
+
|
| 133 |
+
def _on_select(evt: gr.SelectData):
|
| 134 |
+
return _clip_view(evt.index)
|
| 135 |
+
selector.select(_on_select, inputs=None, outputs=[sel_clip, sel_md])
|
| 136 |
+
|
| 137 |
+
with gr.Accordion("Held-out test-set metrics (all 5,312 clips)", open=False):
|
| 138 |
+
gr.Markdown(_metrics_md())
|
| 139 |
|
| 140 |
with gr.Tab("② Videos"):
|
| 141 |
gr.Markdown("Whole field-of-view over the held-out sequence.")
|
assets/gallery/fp_int2prem_0_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/gallery_manifest.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
"gif": "ok_interphase_0.gif",
|
|
|
|
| 4 |
"png": "ok_interphase_0.png",
|
| 5 |
"true": "interphase",
|
| 6 |
"pred": "interphase",
|
| 7 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
"caption": "true=interphase -> pred=interphase (1.00)",
|
| 9 |
"category": "ok_interphase",
|
| 10 |
"title": "Correct: interphase",
|
|
@@ -14,10 +20,16 @@
|
|
| 14 |
},
|
| 15 |
{
|
| 16 |
"gif": "ok_interphase_1.gif",
|
|
|
|
| 17 |
"png": "ok_interphase_1.png",
|
| 18 |
"true": "interphase",
|
| 19 |
"pred": "interphase",
|
| 20 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
"caption": "true=interphase -> pred=interphase (1.00)",
|
| 22 |
"category": "ok_interphase",
|
| 23 |
"title": "Correct: interphase",
|
|
@@ -27,10 +39,16 @@
|
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"gif": "ok_premitosis_0.gif",
|
|
|
|
| 30 |
"png": "ok_premitosis_0.png",
|
| 31 |
"true": "pre-mitosis",
|
| 32 |
"pred": "pre-mitosis",
|
| 33 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
"caption": "true=pre-mitosis -> pred=pre-mitosis (1.00)",
|
| 35 |
"category": "ok_premitosis",
|
| 36 |
"title": "Correct: pre-mitosis",
|
|
@@ -40,10 +58,16 @@
|
|
| 40 |
},
|
| 41 |
{
|
| 42 |
"gif": "ok_premitosis_1.gif",
|
|
|
|
| 43 |
"png": "ok_premitosis_1.png",
|
| 44 |
"true": "pre-mitosis",
|
| 45 |
"pred": "pre-mitosis",
|
| 46 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
"caption": "true=pre-mitosis -> pred=pre-mitosis (1.00)",
|
| 48 |
"category": "ok_premitosis",
|
| 49 |
"title": "Correct: pre-mitosis",
|
|
@@ -53,10 +77,16 @@
|
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"gif": "ok_mitosis_0.gif",
|
|
|
|
| 56 |
"png": "ok_mitosis_0.png",
|
| 57 |
"true": "mitosis",
|
| 58 |
"pred": "mitosis",
|
| 59 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
"caption": "true=mitosis -> pred=mitosis (1.00)",
|
| 61 |
"category": "ok_mitosis",
|
| 62 |
"title": "Correct: mitosis",
|
|
@@ -66,10 +96,16 @@
|
|
| 66 |
},
|
| 67 |
{
|
| 68 |
"gif": "ok_mitosis_1.gif",
|
|
|
|
| 69 |
"png": "ok_mitosis_1.png",
|
| 70 |
"true": "mitosis",
|
| 71 |
"pred": "mitosis",
|
| 72 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
"caption": "true=mitosis -> pred=mitosis (1.00)",
|
| 74 |
"category": "ok_mitosis",
|
| 75 |
"title": "Correct: mitosis",
|
|
@@ -79,10 +115,16 @@
|
|
| 79 |
},
|
| 80 |
{
|
| 81 |
"gif": "miss_prem2int_0.gif",
|
|
|
|
| 82 |
"png": "miss_prem2int_0.png",
|
| 83 |
"true": "pre-mitosis",
|
| 84 |
"pred": "interphase",
|
| 85 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
"caption": "true=pre-mitosis -> pred=interphase (1.00)",
|
| 87 |
"category": "miss_prem2int",
|
| 88 |
"title": "Failure: pre-mitosis read as interphase",
|
|
@@ -92,10 +134,16 @@
|
|
| 92 |
},
|
| 93 |
{
|
| 94 |
"gif": "miss_prem2int_1.gif",
|
|
|
|
| 95 |
"png": "miss_prem2int_1.png",
|
| 96 |
"true": "pre-mitosis",
|
| 97 |
"pred": "interphase",
|
| 98 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
"caption": "true=pre-mitosis -> pred=interphase (1.00)",
|
| 100 |
"category": "miss_prem2int",
|
| 101 |
"title": "Failure: pre-mitosis read as interphase",
|
|
@@ -105,10 +153,16 @@
|
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"gif": "miss_mit2int_0.gif",
|
|
|
|
| 108 |
"png": "miss_mit2int_0.png",
|
| 109 |
"true": "mitosis",
|
| 110 |
"pred": "interphase",
|
| 111 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
"caption": "true=mitosis -> pred=interphase (1.00)",
|
| 113 |
"category": "miss_mit2int",
|
| 114 |
"title": "Failure: missed mitosis (read as interphase)",
|
|
@@ -118,10 +172,16 @@
|
|
| 118 |
},
|
| 119 |
{
|
| 120 |
"gif": "fp_int2prem_0.gif",
|
|
|
|
| 121 |
"png": "fp_int2prem_0.png",
|
| 122 |
"true": "interphase",
|
| 123 |
"pred": "pre-mitosis",
|
| 124 |
"conf": 1.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
"caption": "true=interphase -> pred=pre-mitosis (1.00)",
|
| 126 |
"category": "fp_int2prem",
|
| 127 |
"title": "Failure: interphase over-called pre-mitosis",
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
"gif": "ok_interphase_0.gif",
|
| 4 |
+
"raw_gif": "ok_interphase_0_raw.gif",
|
| 5 |
"png": "ok_interphase_0.png",
|
| 6 |
"true": "interphase",
|
| 7 |
"pred": "interphase",
|
| 8 |
"conf": 1.0,
|
| 9 |
+
"probs": [
|
| 10 |
+
1.0,
|
| 11 |
+
0.0,
|
| 12 |
+
0.0
|
| 13 |
+
],
|
| 14 |
"caption": "true=interphase -> pred=interphase (1.00)",
|
| 15 |
"category": "ok_interphase",
|
| 16 |
"title": "Correct: interphase",
|
|
|
|
| 20 |
},
|
| 21 |
{
|
| 22 |
"gif": "ok_interphase_1.gif",
|
| 23 |
+
"raw_gif": "ok_interphase_1_raw.gif",
|
| 24 |
"png": "ok_interphase_1.png",
|
| 25 |
"true": "interphase",
|
| 26 |
"pred": "interphase",
|
| 27 |
"conf": 1.0,
|
| 28 |
+
"probs": [
|
| 29 |
+
1.0,
|
| 30 |
+
0.0,
|
| 31 |
+
0.0
|
| 32 |
+
],
|
| 33 |
"caption": "true=interphase -> pred=interphase (1.00)",
|
| 34 |
"category": "ok_interphase",
|
| 35 |
"title": "Correct: interphase",
|
|
|
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"gif": "ok_premitosis_0.gif",
|
| 42 |
+
"raw_gif": "ok_premitosis_0_raw.gif",
|
| 43 |
"png": "ok_premitosis_0.png",
|
| 44 |
"true": "pre-mitosis",
|
| 45 |
"pred": "pre-mitosis",
|
| 46 |
"conf": 1.0,
|
| 47 |
+
"probs": [
|
| 48 |
+
0.0001,
|
| 49 |
+
0.9999,
|
| 50 |
+
0.0
|
| 51 |
+
],
|
| 52 |
"caption": "true=pre-mitosis -> pred=pre-mitosis (1.00)",
|
| 53 |
"category": "ok_premitosis",
|
| 54 |
"title": "Correct: pre-mitosis",
|
|
|
|
| 58 |
},
|
| 59 |
{
|
| 60 |
"gif": "ok_premitosis_1.gif",
|
| 61 |
+
"raw_gif": "ok_premitosis_1_raw.gif",
|
| 62 |
"png": "ok_premitosis_1.png",
|
| 63 |
"true": "pre-mitosis",
|
| 64 |
"pred": "pre-mitosis",
|
| 65 |
"conf": 1.0,
|
| 66 |
+
"probs": [
|
| 67 |
+
0.0001,
|
| 68 |
+
0.9999,
|
| 69 |
+
0.0
|
| 70 |
+
],
|
| 71 |
"caption": "true=pre-mitosis -> pred=pre-mitosis (1.00)",
|
| 72 |
"category": "ok_premitosis",
|
| 73 |
"title": "Correct: pre-mitosis",
|
|
|
|
| 77 |
},
|
| 78 |
{
|
| 79 |
"gif": "ok_mitosis_0.gif",
|
| 80 |
+
"raw_gif": "ok_mitosis_0_raw.gif",
|
| 81 |
"png": "ok_mitosis_0.png",
|
| 82 |
"true": "mitosis",
|
| 83 |
"pred": "mitosis",
|
| 84 |
"conf": 1.0,
|
| 85 |
+
"probs": [
|
| 86 |
+
0.0,
|
| 87 |
+
0.0,
|
| 88 |
+
1.0
|
| 89 |
+
],
|
| 90 |
"caption": "true=mitosis -> pred=mitosis (1.00)",
|
| 91 |
"category": "ok_mitosis",
|
| 92 |
"title": "Correct: mitosis",
|
|
|
|
| 96 |
},
|
| 97 |
{
|
| 98 |
"gif": "ok_mitosis_1.gif",
|
| 99 |
+
"raw_gif": "ok_mitosis_1_raw.gif",
|
| 100 |
"png": "ok_mitosis_1.png",
|
| 101 |
"true": "mitosis",
|
| 102 |
"pred": "mitosis",
|
| 103 |
"conf": 1.0,
|
| 104 |
+
"probs": [
|
| 105 |
+
0.0,
|
| 106 |
+
0.0,
|
| 107 |
+
1.0
|
| 108 |
+
],
|
| 109 |
"caption": "true=mitosis -> pred=mitosis (1.00)",
|
| 110 |
"category": "ok_mitosis",
|
| 111 |
"title": "Correct: mitosis",
|
|
|
|
| 115 |
},
|
| 116 |
{
|
| 117 |
"gif": "miss_prem2int_0.gif",
|
| 118 |
+
"raw_gif": "miss_prem2int_0_raw.gif",
|
| 119 |
"png": "miss_prem2int_0.png",
|
| 120 |
"true": "pre-mitosis",
|
| 121 |
"pred": "interphase",
|
| 122 |
"conf": 1.0,
|
| 123 |
+
"probs": [
|
| 124 |
+
1.0,
|
| 125 |
+
0.0,
|
| 126 |
+
0.0
|
| 127 |
+
],
|
| 128 |
"caption": "true=pre-mitosis -> pred=interphase (1.00)",
|
| 129 |
"category": "miss_prem2int",
|
| 130 |
"title": "Failure: pre-mitosis read as interphase",
|
|
|
|
| 134 |
},
|
| 135 |
{
|
| 136 |
"gif": "miss_prem2int_1.gif",
|
| 137 |
+
"raw_gif": "miss_prem2int_1_raw.gif",
|
| 138 |
"png": "miss_prem2int_1.png",
|
| 139 |
"true": "pre-mitosis",
|
| 140 |
"pred": "interphase",
|
| 141 |
"conf": 1.0,
|
| 142 |
+
"probs": [
|
| 143 |
+
1.0,
|
| 144 |
+
0.0,
|
| 145 |
+
0.0
|
| 146 |
+
],
|
| 147 |
"caption": "true=pre-mitosis -> pred=interphase (1.00)",
|
| 148 |
"category": "miss_prem2int",
|
| 149 |
"title": "Failure: pre-mitosis read as interphase",
|
|
|
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"gif": "miss_mit2int_0.gif",
|
| 156 |
+
"raw_gif": "miss_mit2int_0_raw.gif",
|
| 157 |
"png": "miss_mit2int_0.png",
|
| 158 |
"true": "mitosis",
|
| 159 |
"pred": "interphase",
|
| 160 |
"conf": 1.0,
|
| 161 |
+
"probs": [
|
| 162 |
+
1.0,
|
| 163 |
+
0.0,
|
| 164 |
+
0.0
|
| 165 |
+
],
|
| 166 |
"caption": "true=mitosis -> pred=interphase (1.00)",
|
| 167 |
"category": "miss_mit2int",
|
| 168 |
"title": "Failure: missed mitosis (read as interphase)",
|
|
|
|
| 172 |
},
|
| 173 |
{
|
| 174 |
"gif": "fp_int2prem_0.gif",
|
| 175 |
+
"raw_gif": "fp_int2prem_0_raw.gif",
|
| 176 |
"png": "fp_int2prem_0.png",
|
| 177 |
"true": "interphase",
|
| 178 |
"pred": "pre-mitosis",
|
| 179 |
"conf": 1.0,
|
| 180 |
+
"probs": [
|
| 181 |
+
0.0001,
|
| 182 |
+
0.9999,
|
| 183 |
+
0.0
|
| 184 |
+
],
|
| 185 |
"caption": "true=interphase -> pred=pre-mitosis (1.00)",
|
| 186 |
"category": "fp_int2prem",
|
| 187 |
"title": "Failure: interphase over-called pre-mitosis",
|
assets/gallery/miss_mit2int_0_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/miss_prem2int_0_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/miss_prem2int_1_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/ok_interphase_0_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/ok_interphase_1_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/ok_mitosis_0_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/ok_mitosis_1_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/ok_premitosis_0_raw.gif
ADDED
|
Git LFS Details
|
assets/gallery/ok_premitosis_1_raw.gif
ADDED
|
Git LFS Details
|