Traceback (most recent call last):
File "/src/search/test.py", line 22, in <module>
token, params = sampler.next()
File "/venv/lib/python3.5/site-packages/chocolate/base.py", line 159, in next
return self._next()
File "venv/lib/python3.5/site-packages/chocolate/sample/random.py", line 78, in _next
choices = sorted(set(range(l)) - set(drawn))
MemoryError
I am trying to search within augmentation cascade search space as like in Googles Autoaugment. Each subpolicy (sp) consists of two operations with where each operation has a level (l) and probability (p). When I try to sample from this space I am encountering a MemoryError.
I am trying to search within augmentation cascade search space as like in Googles Autoaugment. Each subpolicy (sp) consists of two operations with where each operation has a level (l) and probability (p). When I try to sample from this space I am encountering a MemoryError.