DigitalSlideArchive / HistomicsStream

A whole-slide image reader for TensorFlow
Apache License 2.0
22 stars 6 forks source link

STYLE: Simplify study dictionary keys #100

Closed Leengit closed 1 year ago

Leengit commented 1 year ago

Closes Issue #92.

review-notebook-app[bot] commented 1 year ago

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

Leengit commented 1 year ago

Implemented via

cd git/HistomicsStream
find histomics_stream test example -type f | \
    egrep '\.(py|ipynb)$' | \
    xargs -r sed -i -r \
        -e 's/number_pixel_columns_for_chunk/chunk_width/g' \
        -e 's/number_pixel_columns_for_slide/slide_height/g' \
        -e 's/number_pixel_columns_for_tile/tile_width/g' \
        -e 's/number_pixel_rows_for_chunk/chunk_height/g' \
        -e 's/number_pixel_rows_for_slide/slide_width/g' \
        -e 's/number_pixel_rows_for_tile/tile_height/g' \
        -e 's/number_tile_columns_for_slide/slide_width_tiles/g' \
        -e 's/number_tile_rows_for_slide/slide_height_tiles/g'