Fix two issues introduced in AutoGPTQ deprecation (#3014)
* Fix two issues introduced in AutoGPTQ deprecation
Merging PR #2932 introduced two bugs that lead to failing
CPU and GPU pipelines.
Firstly, a merge on main in the PR without a follow-up CI
run re-introduced a deleted AutoGPTQ code branch which is now
removed again.
Secondly, gptqmodel seems, just like EETQ, to need a non-isolated
build environment to find external dependencies like PyTorch
to be installed correctly. As this was not present, the nightly
slow CI wasn't run.
* Make sure that hf-doc-builder has requests
Apparently `hf-doc-builder` doesn't expose its dependency to `requests`
in the `setup.py` (it does in `pyproject.toml`). For some reason
`requests` is not installed anymore (some other dependency removed it
probably), so we're getting CI errors.
* Fix docker build test
The docker test build failed because of escaped values passed
to the next task. Used a workaround to undo shell escaping in the JSON
string without violating security measures.
* Ignore DeprecationWarning for BPE as well
---------
Co-authored-by: nemo <git@ningu.net>