Update README.md
Browse files
README.md
CHANGED
@@ -94,7 +94,7 @@ Start exploring with a simple view that leverages embeddings to identify relevan
|
|
94 |
from renumics import spotlight
|
95 |
|
96 |
df = dataset.to_pandas()
|
97 |
-
spotlight.show(df, dtype={'
|
98 |
```
|
99 |
You can use the UI to interactively configure the view on the data. Depending on the concrete taks (e.g. model comparison, debugging, outlier detection) you might want to leverage different enrichments and metadata.
|
100 |
|
@@ -105,7 +105,8 @@ This example shows a view that is suitable to compare the results of two differe
|
|
105 |
from renumics import spotlight
|
106 |
|
107 |
df = dataset.to_pandas()
|
108 |
-
spotlight.show(df, dtype={'audio': spotlight.Audio, "ast-finetuned-audioset-10-10-0.4593-embeddings": spotlight.Embedding}, layout=ds_builder.config.get_layout(config="standard"))
|
|
|
109 |
```
|
110 |
|
111 |
## Using custom model results and enrichments
|
|
|
94 |
from renumics import spotlight
|
95 |
|
96 |
df = dataset.to_pandas()
|
97 |
+
spotlight.show(df, dtype={'path': spotlight.Audio, "embeddings_ast-finetuned-audioset-10-10-0.4593": spotlight.Embedding})
|
98 |
```
|
99 |
You can use the UI to interactively configure the view on the data. Depending on the concrete taks (e.g. model comparison, debugging, outlier detection) you might want to leverage different enrichments and metadata.
|
100 |
|
|
|
105 |
from renumics import spotlight
|
106 |
|
107 |
df = dataset.to_pandas()
|
108 |
+
# spotlight.show(df, dtype={'audio': spotlight.Audio, "ast-finetuned-audioset-10-10-0.4593-embeddings": spotlight.Embedding}, layout=ds_builder.config.get_layout(config="standard"))
|
109 |
+
# todo
|
110 |
```
|
111 |
|
112 |
## Using custom model results and enrichments
|