Bring back the smaller 'large' decode payload

The actually-large payload is too large to be of particular use.
This commit is contained in:
Carlos Martín Nieto 2016-05-23 14:09:25 +02:00
Родитель 5a4e3a0cba
Коммит 70220ecfdc
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -10,8 +10,7 @@ ITER = 1_000
def setup
tiny = t[:ok, :awesome]
small = t[:ok, :answers, [42] * 42]
#large = ["abc" * 1000] * 100
large = "a" * (1024 * 1024 * 64)
large = ["abc" * 1000] * 100
complex = [42, {:foo => 'bac' * 100}, t[(1..100).to_a]] * 10
$tiny_encoded_bert = BERT.encode(tiny)