H2OGPT / docs /README_WHEEL.md
akashkj's picture
Upload folder using huggingface_hub
3f7cfab
|
raw
history blame contribute delete
No virus
842 Bytes

A newer version of the Gradio SDK is available: 4.39.0

Upgrade

Python Wheel

The wheel adds all dependencies including optional dependencies like 4-bit and flash-attention. To build do:

python setup.py sdist bdist_wheel

To install the default dependencies do:

pip install dist/h2ogpt-0.1.0-py3-none-any.whl

replace 0.1.0 with actual version built if more than one. To install additional dependencies, for instance for faiss on GPU, do:

pip install dist/h2ogpt-0.1.0-py3-none-any.whl
pip install dist/h2ogpt-0.1.0-py3-none-any.whl[FAISS]

once whl file is installed, two new scripts will be added to the current environment: h2ogpt_finetune, and h2ogpt_generate.

The wheel is not required to use h2oGPT locally from repo, but makes it portable with all required dependencies.

See setup.py for controlling other options via extras_require.