From 67b370cd2f61a9803c57f9b5b21ee16307d14a35 Mon Sep 17 00:00:00 2001 From: Markus Stoll Date: Fri, 15 May 2026 15:50:33 +0200 Subject: [PATCH] spotlight local --- notebooks/audio_classification.ipynb | 4 ++-- notebooks/f1_embedding_generation.ipynb | 4 ++-- notebooks/hf_cifar100.ipynb | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/notebooks/audio_classification.ipynb b/notebooks/audio_classification.ipynb index 1a9c765..28f7661 100644 --- a/notebooks/audio_classification.ipynb +++ b/notebooks/audio_classification.ipynb @@ -35,7 +35,7 @@ "source": [ "from renumics import spotlight\n", "\n", - "spotlight.show(ds_full, no_ssl=True, analyze=False)" + "spotlight.show(ds_full, analyze=False)" ] }, { @@ -223,7 +223,7 @@ "metadata": {}, "outputs": [], "source": [ - "spotlight.show(df, no_ssl=True, analyze=False)" + "spotlight.show(df, analyze=False)" ] } ], diff --git a/notebooks/f1_embedding_generation.ipynb b/notebooks/f1_embedding_generation.ipynb index a69c5a8..b462e80 100644 --- a/notebooks/f1_embedding_generation.ipynb +++ b/notebooks/f1_embedding_generation.ipynb @@ -55,7 +55,7 @@ "dtype = {c: spotlight.dtypes.sequence_1d_dtype for c in sequence_cols}\n", "\n", "\n", - "spotlight.show(ds, dtype=dtype, port=8890, no_ssl=True, host=\"0.0.0.0\", analyze=False)" + "spotlight.show(ds, dtype=dtype, port=8890, analyze=False)" ] }, { @@ -189,7 +189,7 @@ " if c in ds.column_names:\n", " dtype[c] = spotlight.dtypes.embedding_dtype\n", "\n", - "spotlight.show(ds, dtype=dtype, port=8891, no_ssl=True, host=\"0.0.0.0\", analyze=False)" + "spotlight.show(ds, dtype=dtype, port=8891, analyze=False)" ] }, { diff --git a/notebooks/hf_cifar100.ipynb b/notebooks/hf_cifar100.ipynb index d04dfa0..112b9a1 100644 --- a/notebooks/hf_cifar100.ipynb +++ b/notebooks/hf_cifar100.ipynb @@ -27,7 +27,7 @@ "\n", "ds = datasets.load_dataset(\"cifar100\", split=\"test\")\n", "ds = ds.select(range(0, 100))\n", - "spotlight.show(ds,no_ssl=True, analyze=False)" + "spotlight.show(ds, analyze=False)" ] }, { @@ -107,7 +107,7 @@ "layout = spotlight.layouts.debug_classification(\n", " label=\"fine_label\", embedding=\"embedding\", inspect={\"img\": spotlight.dtypes.image_dtype}\n", ")\n", - "spotlight.show(ds_enriched, dtype={\"embedding\": spotlight.Embedding}, no_ssl=True, analyze=False, layout=layout)" + "spotlight.show(ds_enriched, dtype={\"embedding\": spotlight.Embedding}, analyze=False, layout=layout)" ] }, {