File size: 703 Bytes
6890a08
 
 
 
 
7802e75
9e58c13
6890a08
 
 
 
 
 
 
 
 
 
 
 
3f178e6
6890a08
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from renumics import spotlight
import pandas as pd


if __name__ == "__main__":
    df = pd.read_json("sd_dataset_scored_embedded_parti.json")
    df["GitHub"] = '<a href="https://github.com/Renumics/spotlight" target="_blank">⭐ Star Spotlight on GitHub</a>'
    
    while True:
        dtypes = {
            "image": spotlight.Image,
            "clip_image_embedding": spotlight.Embedding,
            "clip_text_embedding": spotlight.Embedding,
        }
        view = spotlight.show(
            df,
            dtype=dtypes,
            port=7860, 
            host="0.0.0.0",
            layout="spotlight-layout.json",
            allow_filebrowsing=False 
        )

        view.close()