Skip to content

Commit

Permalink
Unstructured-IO#3713 fix the wrong file path in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shaofengshi committed Oct 10, 2024
1 parent 06c8523 commit 5bcb6eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Once in the running container, you can try things directly in Python interpreter
python3

>>> from unstructured.partition.pdf import partition_pdf
>>> elements = partition_pdf(filename="example-docs/layout-parser-paper-fast.pdf")
>>> elements = partition_pdf(filename="example-docs/pdf/layout-parser-paper-fast.pdf")

>>> from unstructured.partition.text import partition_text
>>> elements = partition_text(filename="example-docs/fake-text.txt")
Expand Down Expand Up @@ -198,7 +198,7 @@ See our [installation guide](https://docs.unstructured.io/open-source/installat
```python
from unstructured.partition.auto import partition

elements = partition("example-docs/layout-parser-paper.pdf")
elements = partition("example-docs/pdf/layout-parser-paper.pdf")
```

Run `print("\n\n".join([str(el) for el in elements]))` to get a string representation of the
Expand Down

0 comments on commit 5bcb6eb

Please sign in to comment.