Browse Source

lint

new-sep-loss
Michael Pilosov, PhD 9 months ago
parent
commit
95a6adac91
  1. 2
      makefile
  2. 4
      scripts/sortcolor.py

2
makefile

@ -52,7 +52,7 @@ animate:
umap:
for seed in `seq 0 100`; do \
python scripts/sortcolor.py -s umap --seed $$seed --dpi 300 ; \
python scripts/sortcolor.py -s umap --dpi 300 --seed $$seed ; \
done

4
scripts/sortcolor.py

@ -86,8 +86,8 @@ elif KIND == "umap":
n_components=1,
n_neighbors=250,
min_dist=0.005,
metric="cosine",
random_state=SEED,
metric="euclidean",
# random_state=SEED,
)
embedding = reducer.fit_transform(np.array(rgb_values))

Loading…
Cancel
Save