Skip to content

Commit

Permalink
change delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
rwood-97 authored Jan 15, 2024
1 parent 566e602 commit b936bed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/User-guide/Classify/Infer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ This can be done by loading a dataframe containing the paths to your patches:
from mapreader import PatchDataset
infer = PatchDataset("./patch_df.csv", delimiter="\t", transform="test")
infer = PatchDataset("./patch_df.csv", delimiter=",", transform="test")
.. note:: You can create this ``.csv`` file using the ``.convert_image(save=True)`` method on your ``MapImages`` object (follow instructions in the `Load <https://mapreader.readthedocs.io/en/latest/User-guide/Load.html>`__ user guidance).

Expand Down Expand Up @@ -152,7 +152,7 @@ From here, you can either save your results using:

.. code-block:: python
infer.patch_df.to_csv("predictions_patch_df.csv", sep="\t")
infer.patch_df.to_csv("predictions_patch_df.csv", sep=",")
Or, you can use the ``MapImages`` object to create some visualizations of your results:

Expand Down

0 comments on commit b936bed

Please sign in to comment.