mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-09-06 07:12:37 +00:00

If a layout model is used from unstructured-inference, you get back class probabilities in the element metadata from partition. extra-pdf-image-in in requirements already has the newest version of unstructured-inference in there without a pinned version. Is there any place else that the unstructured-inference version needs to be updated to the required release version, 0.5.22?
28 lines
793 B
Bash
Executable File
28 lines
793 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ -z "$UNS_API_KEY" ]; then
|
|
echo "Skipping ingest test against api because the UNS_API_KEY env var is not set."
|
|
exit 0
|
|
fi
|
|
SCRIPT_DIR=$(dirname "$(realpath "$0")")
|
|
cd "$SCRIPT_DIR"/.. || exit 1
|
|
OUTPUT_FOLDER_NAME=api-ingest-output
|
|
OUTPUT_DIR=$SCRIPT_DIR/structured-output/$OUTPUT_FOLDER_NAME
|
|
|
|
PYTHONPATH=. ./unstructured/ingest/main.py \
|
|
local \
|
|
--api-key "$UNS_API_KEY" \
|
|
--metadata-exclude coordinates,metadata.last_modified,metadata.detection_class_prob \
|
|
--partition-by-api \
|
|
--partition-strategy hi_res \
|
|
--reprocess \
|
|
--structured-output-dir "$OUTPUT_DIR" \
|
|
--verbose \
|
|
--num-processes 1 \
|
|
--file-glob "*1p.txt" \
|
|
--input-path example-docs
|
|
|
|
sh "$SCRIPT_DIR"/check-num-files-output.sh 1 $OUTPUT_FOLDER_NAME
|