Here is the repo https://github.com/my-unlisted-repos/old/tree/main/visualbench. The "tasks" folder has a completely empty __init__, however for some reason I can't import it.
in google colab I am doing this
!pip install git+https://github.com/my-unlisted-repos/old
import visualbench
dir(visualbench)
it shows everything except tasks
['Benchmark',
'__builtins__',
'__cached__',
'__doc__',
'__file__',
'__loader__',
'__name__',
'__package__',
'__path__',
'__spec__',
'benchmark',
'dataset_tools']
and
from visualbench import tasks
causes cannot import name 'tasks' from 'visualbench', I have no idea why that would happen. And it works locally too for some reason...