Skip to content
Permalink
03071c2b38
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (9 sloc) 242 Bytes
#!/bin/bash
set -e
for space in jaccard_sparse; do
for num_elems in 30000 100000 300000 1000000 3000000 10000000 30000000; do
for nbits in 512 2048; do
python jaccard_comparison.py $space $num_elems $nbits
done
done
done