Skip to content

Commit 0b3acb0

Browse files
authored
Update visualize.py
There was an issue because i is in uint16 and 100000 is too large
1 parent 06b2fea commit 0b3acb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ctc_metrics/scripts/visualize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424

2525
np.random.seed(0)
26-
PALETTE = np.random.randint(0, 256, (100000, 3))
26+
PALETTE = np.random.randint(0, 256, (10000, 3))
2727

2828

2929
def get_palette_color(i):

0 commit comments

Comments
 (0)