You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to execute locally using Docker (latest tag, which maps to v0.2.1.post7), the following error is thrown:
Traceback (most recent call last):
File "/usr/local/lib/python3.10/runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/local/lib/python3.10/runpy.py", line 86, in _run_code
exec(code, run_globals)
File "/usr/local/lib/python3.10/site-packages/bigcodebench/evaluate.py", line 21, in <module>
from bigcodebench.generate import run_codegen
File "/usr/local/lib/python3.10/site-packages/bigcodebench/generate.py", line 6, in <module>
from bigcodebench.provider import DecoderBase, make_model
File "/usr/local/lib/python3.10/site-packages/bigcodebench/provider/__init__.py", line 1, in <module>
from bigcodebench.provider.base import DecoderBase
File "/usr/local/lib/python3.10/site-packages/bigcodebench/provider/base.py", line 4, in <module>
from bigcodebench.provider.utility import EOS
File "/usr/local/lib/python3.10/site-packages/bigcodebench/provider/utility.py", line 2, in <module>
from transformers import AutoTokenizer
ModuleNotFoundError: No module named 'transformers
In the provided Dockerfiles in the project, bigcodebench is installed with no deps, but Transformers is never otherwise specified for installation.
When running without Docker, I run into the matplotlib/_c_internal_utils.cpython-310-x86_64-linux-gnu.so: failed to map segment from shared object previously reported in #62 and #34
The text was updated successfully, but these errors were encountered:
When attempting to execute locally using Docker (latest tag, which maps to
v0.2.1.post7
), the following error is thrown:In the provided Dockerfiles in the project, bigcodebench is installed with no deps, but Transformers is never otherwise specified for installation.
When running without Docker, I run into the
matplotlib/_c_internal_utils.cpython-310-x86_64-linux-gnu.so: failed to map segment from shared object
previously reported in #62 and #34The text was updated successfully, but these errors were encountered: