π§ TroubleshootingΒΆ
If installation fails on old OS (e.g., CentOS 7) due to a NumPy-related error, you can try installing older versions of NumPy first:
python -m pip install "numpy<2.3.0,>2.0.0" python -m pip install -e .
If you encounter CUDA or torch-related errors, make sure you have installed the correct version of PyTorch with correct CUDA version support.
If Dorado fails due to βillegal memory accessβ, try adding
--chunksize <chunk_size>option (e.g., chunk_size=12000).If DeepRM call fails due to memory error, try reducing the batch size (
-soption, default: 10000).If DeepRM train fails due to memory error, try reducing the batch size (
--batchoption, default: 1024).If DeeepRM call preprocess fails due to
libssl.so.1.1not found error in newer versons of Ubuntu, try installinglibssl1.1package:The libssl file can be found at: https://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl
wget <libssl_file> sudo dpkg <libssl_file>
If DeepRM call preprocess fails due to memory error, try reducing the number of threads (
-toption), the preprocessing batch size (-noption), or the output chunk size (-koption).If DeepRM train does not output training-related metrics, try installing
torchmetricspackage:python -m pip install torchmetrics