mirror of
https://github.com/allenai/olmocr.git
synced 2025-07-03 23:25:49 +00:00
16 lines
352 B
Bash
Executable File
16 lines
352 B
Bash
Executable File
#/usr/bin/bash
|
|
|
|
set -ex
|
|
|
|
git clone https://github.com/allenai/olmocr.git olmocr \
|
|
&& cd olmocr \
|
|
&& git checkout $GIT_REVISION \
|
|
&& /root/.local/bin/uv pip install --system --no-cache \
|
|
.[gpu] \
|
|
pytest \
|
|
--find-links https://flashinfer.ai/whl/cu124/torch2.4/flashinfer/ \
|
|
&& pytest tests/gnarly_pdfs/test_evaluate_gnarly_pdfs.py
|
|
|
|
|
|
|