Chapter 37
Resizing images to make them smaller to download
NotebookPython 3.9.7 64-bit (conda)6 cells
Resizing images to make them smaller to download
In [1]python · cell 2
python
!wget https://storage.googleapis.com/food-vision-image-playground/10_whole_foods.zip
!unzip -q 10_whole_foods.zipOutput
--2021-11-09 15:08:12-- https://storage.googleapis.com/food-vision-image-playground/10_whole_foods.zip Resolving storage.googleapis.com (storage.googleapis.com)... 142.250.71.80, 172.217.24.48, 172.217.167.112, ... Connecting to storage.googleapis.com (storage.googleapis.com)|142.250.71.80|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 1408231082 (1.3G) [application/zip] Saving to: '10_whole_foods.zip’ 10_whole_foods.zip 100%[===================>] 1.31G 11.9MB/s in 1m 54s 2021-11-09 15:10:07 (11.8 MB/s) - '10_whole_foods.zip’ saved [1408231082/1408231082]
In [2]python · cell 3
python
from PIL import Image
import os
import pathlibIn [3]python · cell 4
python
# Get all files in targ dir
file_list = list(pathlib.Path("10_whole_foods/").glob("*/*/*.jpg"))
file_listOutput
[PosixPath('10_whole_foods/test/carrots/7d72ffdd-c1c5-4635-89d2-34fb4e5fbf31.jpg'),
PosixPath('10_whole_foods/test/carrots/50b5b9e8-9e41-4e31-b02e-205433d8bbee.jpg'),
PosixPath('10_whole_foods/test/carrots/19367379-ecd4-43f1-b4bf-8c6d0e42df7a.jpg'),
PosixPath('10_whole_foods/test/carrots/17a04fd6-b229-493c-b553-202c7fb7e990.jpg'),
PosixPath('10_whole_foods/test/carrots/ea8a4ff9-d176-4bfa-8e07-c2cc14707d8d.jpg'),
PosixPath('10_whole_foods/test/carrots/c22185f7-007e-42db-869f-9fcdd93b533e.jpg'),
PosixPath('10_whole_foods/test/carrots/f9ca45cc-c993-4213-b14d-d370320f41aa.jpg'),
PosixPath('10_whole_foods/test/carrots/a549c0e5-31a8-4267-b5ff-469ec7c3f350.jpg'),
PosixPath('10_whole_foods/test/carrots/4c82895c-6674-44f0-a5ea-9128874194ec.jpg'),
PosixPath('10_whole_foods/test/carrots/e35a7837-0ef6-4fa0-a56c-6d8afcd85230.jpg'),
PosixPath('10_whole_foods/test/carrots/d041f503-0b14-457c-9823-a01ac9a029f7.jpg'),
PosixPath('10_whole_foods/test/carrots/9a9f8ba7-dfed-4a62-9f9b-58d9806c26a2.jpg'),
PosixPath('10_whole_foods/test/carrots/373b2a05-3281-43d4-a6ab-f7230f4c4f38.jpg'),
PosixPath('10_whole_foods/test/carrots/f54b730a-51f5-4281-8193-fe211604ec65.jpg'),
PosixPath('10_whole_foods/test/carrots/7c182ab7-4f8e-4a20-9b95-d9f087b3c1db.jpg'),
PosixPath('10_whole_foods/test/carrots/70571126-3501-4aff-a104-dfb13a1a2c83.jpg'),
PosixPath('10_whole_foods/test/carrots/c8283750-34b8-4740-b99f-e05ccf067a91.jpg'),
PosixPath('10_whole_foods/test/mushrooms/3df09847-72c8-4814-8f2b-a4ba6bf2a682.jpg'),
PosixPath('10_whole_foods/test/mushrooms/46718310-c8a7-4477-b2e0-922b97227098.jpg'),
PosixPath('10_whole_foods/test/mushrooms/5d0485ef-2418-4cd0-ab73-58ce9a99da9a.jpg'),
PosixPath('10_whole_foods/test/mushrooms/c54b09d4-b372-4ca2-acde-18417f7e26d8.jpg'),
PosixPath('10_whole_foods/test/mushrooms/6bdfc054-2afd-4429-a03b-8c7ca43e81d7.jpg'),
PosixPath('10_whole_foods/test/mushrooms/a13f76f1-bdf1-41e8-a326-c1bec1b6aa6c.jpg'),
PosixPath('10_whole_foods/test/mushrooms/d34c8181-806f-43d1-8204-a8ee0e8e667c.jpg'),
PosixPath('10_whole_foods/test/mushrooms/50488d78-d44c-4e3c-91b0-115c164d09b4.jpg'),
PosixPath('10_whole_foods/test/mushrooms/6db09dc0-89f0-4957-9bf6-6d2c5d2fb29e.jpg'),
PosixPath('10_whole_foods/test/mushrooms/301f0994-427b-43e0-9b09-b31b782bc8d2.jpg'),
PosixPath('10_whole_foods/test/mushrooms/26cba37d-5865-4656-85b9-aec315f24af5.jpg'),
PosixPath('10_whole_foods/test/apple/785976d8-1e6f-460a-9770-50d4e811d80b.jpg'),
PosixPath('10_whole_foods/test/apple/6e8eb37d-7ba4-4842-9b04-073323132a02.jpg'),
PosixPath('10_whole_foods/test/apple/df258910-d582-4e68-aa42-a5168289b87a.jpg'),
PosixPath('10_whole_foods/test/apple/f7adecb7-06ac-4d7b-95a6-0dfe0bfbc45d.jpg'),
PosixPath('10_whole_foods/test/apple/6495a9ce-1dfb-447f-b27c-fc50e56670fa.jpg'),
PosixPath('10_whole_foods/test/apple/9e79d618-d21b-4092-8530-8b735800ba03.jpg'),
PosixPath('10_whole_foods/test/apple/cc5698c5-69bf-4915-beaa-b9a1829ce77c.jpg'),
PosixPath('10_whole_foods/test/apple/9481309c-5ae0-4a8a-ac28-273ef0e1f4a5.jpg'),
PosixPath('10_whole_foods/test/apple/8d158300-6a0b-4187-9f4f-7dce0a615417.jpg'),
PosixPath('10_whole_foods/test/apple/8ac6f821-7411-4aeb-b128-32cb56c0dc0b.jpg'),
PosixPath('10_whole_foods/test/apple/2dceed6f-5b7f-4033-ad4b-257218dd5252.jpg'),
PosixPath('10_whole_foods/test/apple/9d3b3d87-c2ac-4b58-87b1-bff133e807c7.jpg'),
PosixPath('10_whole_foods/test/apple/94797992-241c-4662-8bb0-8ce4ef495cfd.jpg'),
PosixPath('10_whole_foods/test/apple/9e174612-5ea7-4c2a-9932-0f47128a00ff.jpg'),
PosixPath('10_whole_foods/test/apple/1ba1cdf1-0bb0-4d24-abba-880216564dd0.jpg'),
PosixPath('10_whole_foods/test/apple/39055078-d3f3-49e8-92a5-106a3babf657.jpg'),
PosixPath('10_whole_foods/test/apple/767a5100-6e9c-4ac5-9422-1e056514257a.jpg'),
PosixPath('10_whole_foods/test/strawberries/4f7b16f3-d936-4164-87f7-daf18fc08c87.jpg'),
PosixPath('10_whole_foods/test/strawberries/426be94a-b621-43fb-b001-485bb800f891.jpg'),
PosixPath('10_whole_foods/test/strawberries/24be2ef9-d2d5-46f6-9884-100974cf1ee5.jpg'),
PosixPath('10_whole_foods/test/strawberries/c5e318cc-23ce-42ad-a4bf-acfe6e8b91fb.jpg'),
PosixPath('10_whole_foods/test/strawberries/3446ddae-72a8-4268-beee-018f4df5a5f2.jpg'),
PosixPath('10_whole_foods/test/strawberries/18715d64-21ca-4ba7-a66a-46b88a358c99.jpg'),
PosixPath('10_whole_foods/test/strawberries/2a46c8c5-f0b2-45a6-a9c8-ddea7e6b9cb3.jpg'),
PosixPath('10_whole_foods/test/strawberries/02c10df1-f261-41a6-ac50-a204499ea6f8.jpg'),
PosixPath('10_whole_foods/test/strawberries/6089dcdf-a246-4dea-8da6-66cd5820f362.jpg'),
PosixPath('10_whole_foods/test/strawberries/4c9d4c37-0e39-4def-bb78-1bd5f18a1f41.jpg'),
PosixPath('10_whole_foods/test/blueberries/d35ad448-a95a-4d27-aa8f-5fe1a96b4fc7.jpg'),
PosixPath('10_whole_foods/test/blueberries/e9590c3f-c1f7-4460-b895-b558b94a8af9.jpg'),
PosixPath('10_whole_foods/test/blueberries/84cf917d-7d98-4a0f-804c-d74bcb562915.jpg'),
PosixPath('10_whole_foods/test/blueberries/02c1a4cb-97e2-410c-8d70-6eb46ed93798.jpg'),
PosixPath('10_whole_foods/test/blueberries/3f70449f-24ac-4d98-b8d6-87291548da66.jpg'),
PosixPath('10_whole_foods/test/blueberries/f3d12761-e267-49f1-b7f6-260d2199fba8.jpg'),
PosixPath('10_whole_foods/test/blueberries/970ee4ed-5cea-44dd-acd5-e027d8aaffef.jpg'),
PosixPath('10_whole_foods/test/blueberries/8ed4110f-8c64-4b61-9920-493525f9b659.jpg'),
PosixPath('10_whole_foods/test/blueberries/c9e6d647-e4d9-4a4c-a80e-46b9d7beca95.jpg'),
PosixPath('10_whole_foods/test/blueberries/04f98519-9940-4b9e-b7d4-982205c3ddf3.jpg'),
PosixPath('10_whole_foods/test/blueberries/573df8c6-9c7d-47b2-b717-05ed1072d0df.jpg'),
PosixPath('10_whole_foods/test/blueberries/f4b319f6-b8e8-4e0f-bdc9-4f8fd4e953b8.jpg'),
PosixPath('10_whole_foods/test/blueberries/5f599d31-67af-4cb5-9844-3c98776c09f1.jpg'),
PosixPath('10_whole_foods/test/blueberries/3e28919a-99c2-4660-878c-906d4e0d9a44.jpg'),
PosixPath('10_whole_foods/test/blueberries/6052eae9-32eb-41c8-8d3b-4110252b8360.jpg'),
PosixPath('10_whole_foods/test/blueberries/e6b79ca1-f0b7-42a7-a133-bd62a527aa7a.jpg'),
PosixPath('10_whole_foods/test/blueberries/c68ca706-7eec-4f9c-b962-82f24cab18df.jpg'),
PosixPath('10_whole_foods/test/blueberries/a5f49477-7928-4748-97d4-aebea2ecd21b.jpg'),
PosixPath('10_whole_foods/test/blueberries/de77c967-60bd-43c5-9e69-0ae4fee426cc.jpg'),
PosixPath('10_whole_foods/test/banana/c0c39e49-b08d-4681-ae2f-e1c762f8e4c7.jpg'),
PosixPath('10_whole_foods/test/banana/97d70397-7cd9-4db4-98f5-7304562d5acc.jpg'),
PosixPath('10_whole_foods/test/banana/218da1be-6acc-4285-95fe-affe0b4468b1.jpg'),
PosixPath('10_whole_foods/test/banana/10deaf70-13ee-498d-8e84-da24bc852dac.jpg'),
PosixPath('10_whole_foods/test/banana/588b8e0c-9195-4789-bb41-2b709602cf67.jpg'),
PosixPath('10_whole_foods/test/banana/b914653a-e72b-4341-a4d4-1ec4c170b701.jpg'),
PosixPath('10_whole_foods/test/banana/132e339b-0a17-4d26-bc63-21bfba9acd10.jpg'),
PosixPath('10_whole_foods/test/banana/03aaa2f4-d8a1-474b-9ac4-4d9f113845a9.jpg'),
PosixPath('10_whole_foods/test/banana/bdcade73-3338-4069-b91d-3520ee103bc3.jpg'),
PosixPath('10_whole_foods/test/banana/1f172c71-5343-4a1f-bccb-209f72cabf10.jpg'),
PosixPath('10_whole_foods/test/banana/b33e31f6-0a9a-4d64-90c0-b611d98f33fb.jpg'),
PosixPath('10_whole_foods/test/banana/0422826d-4613-46fd-a09f-4837ea175059.jpg'),
PosixPath('10_whole_foods/test/banana/ecc72aa4-ddee-4420-9bf3-0710b5ccedb9.jpg'),
PosixPath('10_whole_foods/test/banana/da0aace0-fab5-4593-ace8-4fffc200d19a.jpg'),
PosixPath('10_whole_foods/test/banana/0cebbe7b-1a54-45d8-b781-cb84bf844a36.jpg'),
PosixPath('10_whole_foods/test/banana/fc75dafb-d295-41b3-bef8-416671606936.jpg'),
PosixPath('10_whole_foods/test/banana/864907b8-2e48-4bc3-9082-94ae34fdc870.jpg'),
PosixPath('10_whole_foods/test/banana/4b10e023-62ce-404f-b97e-f7d68815ec3d.jpg'),
PosixPath('10_whole_foods/test/banana/b8dc95e8-cafb-4352-881a-77cff58ef0c1.jpg'),
PosixPath('10_whole_foods/test/banana/a9046e2b-e176-4dfd-bcfc-22103c0c868e.jpg'),
PosixPath('10_whole_foods/test/beef/40e9f146-86ad-4e21-bd43-127d146adf1a.jpg'),
PosixPath('10_whole_foods/test/beef/8fc88bc6-d4e2-4b66-bf53-2c3066472eac.jpg'),
PosixPath('10_whole_foods/test/beef/8ac4951e-339e-4eb6-bf59-3cb646eae467.jpg'),
PosixPath('10_whole_foods/test/beef/31f26dce-0f9d-4df5-a430-7badbc1bc805.jpg'),
PosixPath('10_whole_foods/test/beef/065b8b18-30af-47d2-9112-568edf80040b.jpg'),
PosixPath('10_whole_foods/test/beef/349b5922-8ad0-4a14-befb-647fa467f833.jpg'),
PosixPath('10_whole_foods/test/beef/718df741-f22e-4de6-a411-50050efbbcb6.jpg'),
PosixPath('10_whole_foods/test/beef/74272871-b38e-4c9b-88d2-e6c84941b627.jpg'),
PosixPath('10_whole_foods/test/beef/a558ae64-388f-4017-965e-11ad3d260829.jpg'),
PosixPath('10_whole_foods/test/beef/760835d5-43b4-49e5-80b0-242bb68cf6d8.jpg'),
PosixPath('10_whole_foods/test/beef/5b7d3396-ea8a-43b7-8722-b8b5f14f3c55.jpg'),
PosixPath('10_whole_foods/test/beef/1eb4cdd2-2fc2-455f-a1dc-d119f8507624.jpg'),
PosixPath('10_whole_foods/test/beef/51e0a203-b5f9-4e7e-8182-047b3c5e0582.jpg'),
PosixPath('10_whole_foods/test/beef/3822c51e-a0fe-44a8-be85-1994277b8c00.jpg'),
PosixPath('10_whole_foods/test/beef/6c8d472b-c4ef-4b6a-9154-6a82613fe103.jpg'),
PosixPath('10_whole_foods/test/beef/45e95f35-2581-4712-a76e-e31d54c29b53.jpg'),
PosixPath('10_whole_foods/test/beef/a6948608-6905-430c-88ae-05f6d47997cf.jpg'),
PosixPath('10_whole_foods/test/beef/75869cbb-2521-494a-aae6-8386f5d0962d.jpg'),
PosixPath('10_whole_foods/test/beef/6181460d-3e46-48be-9836-884cca7af601.jpg'),
PosixPath('10_whole_foods/test/beef/b0795b64-9e1e-450b-aead-81b33aa6253d.jpg'),
PosixPath('10_whole_foods/test/beef/e9c0f960-4d18-4971-b58b-4af83104622d.jpg'),
PosixPath('10_whole_foods/test/egg/88c524f1-8773-46bc-ab22-cb357f33ea83.jpg'),
PosixPath('10_whole_foods/test/egg/d872e574-883c-4eed-ae86-0cc50086c7c9.jpg'),
PosixPath('10_whole_foods/test/egg/4474b349-0fc6-41c1-b8b4-e2e41e0fc04e.jpg'),
PosixPath('10_whole_foods/test/egg/466eb7ff-dae1-4170-ac70-ad4011c98ba9.jpg'),
PosixPath('10_whole_foods/test/egg/9a457892-5da2-42ad-8262-e6f8f26ce696.jpg'),
PosixPath('10_whole_foods/test/egg/caff6107-27a0-4814-8f8c-bac5017d971b.jpg'),
PosixPath('10_whole_foods/test/egg/9aa40bae-adee-4f9c-9e6a-63a8de3953ea.jpg'),
PosixPath('10_whole_foods/test/egg/2c94e802-195f-47f2-997c-860e97721bf2.jpg'),
PosixPath('10_whole_foods/test/egg/e33f025a-e85d-4151-90c8-3bcc1dcf4ce8.jpg'),
PosixPath('10_whole_foods/test/egg/4048dfda-e49f-48ea-8bb7-8cd20b6da825.jpg'),
PosixPath('10_whole_foods/test/egg/5c49c661-c34a-4af6-b168-ecd2409af889.jpg'),
PosixPath('10_whole_foods/test/egg/a66d327a-c1a2-4d64-be05-c12228af5cd0.jpg'),
PosixPath('10_whole_foods/test/egg/c57f0377-c5e9-4a8d-ba24-55146286879c.jpg'),
PosixPath('10_whole_foods/test/egg/854efa1d-8f7a-4116-bd2e-d7e904acc3c8.jpg'),
PosixPath('10_whole_foods/test/egg/ebfbc4ba-2a6e-4a83-9926-dd175a6c75fb.jpg'),
PosixPath('10_whole_foods/test/honey/88fb8f81-b354-44b3-9c6c-b41c78920ccd.jpg'),
PosixPath('10_whole_foods/test/honey/bcb8300d-de3c-4835-925c-8c1f59489c43.jpg'),
PosixPath('10_whole_foods/test/honey/18e87ac8-97eb-4db0-9a14-0a4b76822239.jpg'),
PosixPath('10_whole_foods/test/honey/33fc615c-2970-40f1-90c8-29e228f35645.jpg'),
PosixPath('10_whole_foods/test/honey/15f10f21-1437-4fa9-b8d4-c0da42ed42cf.jpg'),
PosixPath('10_whole_foods/test/honey/e3f57355-42f3-4884-bcc4-7ca426c6afac.jpg'),
PosixPath('10_whole_foods/test/honey/7f8a31d5-40f5-46a6-b565-e4a81c7f9583.jpg'),
PosixPath('10_whole_foods/test/honey/dc37b3a3-3150-4d18-aa30-66ac65fe198b.jpg'),
PosixPath('10_whole_foods/test/honey/33840370-550e-47f1-acb6-0ea3d5d88fbe.jpg'),
PosixPath('10_whole_foods/test/honey/83b04727-a04a-4956-82be-a05974d5b660.jpg'),
PosixPath('10_whole_foods/test/honey/2bded0ea-d234-4527-bd12-bda19bbbc6e0.jpg'),
PosixPath('10_whole_foods/test/honey/34034eb3-a0cf-4307-aef3-e7ff012602ab.jpg'),
PosixPath('10_whole_foods/test/honey/2c23e06f-c8ec-459d-86f9-55c0a0d1bd8b.jpg'),
PosixPath('10_whole_foods/test/honey/d774b271-e511-4105-b1d1-144dadaa9ae4.jpg'),
PosixPath('10_whole_foods/test/honey/d86d17b8-6f9a-4f0a-94d8-118dcd2bbbaf.jpg'),
PosixPath('10_whole_foods/test/honey/ead191dd-c069-4e7f-8168-637a4434fcb5.jpg'),
PosixPath('10_whole_foods/test/honey/8ad32c62-bf32-443b-8c4e-ca7a222dda5d.jpg'),
PosixPath('10_whole_foods/test/honey/08b67fac-f62c-44e0-a6b8-8e7719e740b3.jpg'),
PosixPath('10_whole_foods/test/honey/1c1bb7e6-a862-4741-9997-81d30f141b77.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/3f0844f0-83c6-4b41-8fb3-b30d5e9a1cc3.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/d2634871-6341-4213-9226-0ee47172e497.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/540b2069-0bbe-4360-b199-d2ee120e2f9b.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/a042e2c8-320b-4e93-a4d0-67fa02ea30d9.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/67632dd3-85c6-4a40-859e-256906728a81.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/ac075575-083a-40d0-881d-e0fd0b73a4bc.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/4ff15e99-6497-408c-8644-f564a12c3d01.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/783ce836-425b-4c3b-9ade-d857bc35abf1.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/b227edab-4e3a-457a-931d-658887a7ec04.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/4854163b-ab7b-457b-b608-599c795c2919.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/44711bc5-0c1d-49dd-86fb-ca17535c4cd3.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/c58c1a7a-fb78-45f1-a5db-c27577b5274d.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/c80f6ed8-7891-4e77-8bb2-fda8ca55f651.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/9bebb0db-9354-4c29-96d3-77e54161501c.jpg'),
PosixPath('10_whole_foods/test/chicken_wings/e5ffefd3-cc2f-47bf-abea-e9000ce9af30.jpg'),
PosixPath('10_whole_foods/train/carrots/0b4d1e07-72b3-4147-a384-cb1a63608c67.jpg'),
PosixPath('10_whole_foods/train/carrots/b93633fc-d534-4d48-b0db-a63fda251c37.jpg'),
PosixPath('10_whole_foods/train/carrots/d92fe934-c76d-4c7b-b9de-b12b38c2a92b.jpg'),
PosixPath('10_whole_foods/train/carrots/8385fdb4-009b-40b4-b438-a6b26073d0ed.jpg'),
PosixPath('10_whole_foods/train/carrots/243992ec-683e-468c-a1f8-e3ea911457cd.jpg'),
PosixPath('10_whole_foods/train/carrots/e1735767-0e26-4f2c-a799-0f710d40325a.jpg'),
PosixPath('10_whole_foods/train/carrots/ceafd3ba-4fde-4523-8445-cfe5f7e8ee99.jpg'),
PosixPath('10_whole_foods/train/carrots/65f5acc8-e10c-4878-82db-6bafd3daa56d.jpg'),
PosixPath('10_whole_foods/train/carrots/a5f759a2-ca8c-4845-a49a-27bd1834f574.jpg'),
PosixPath('10_whole_foods/train/carrots/abce1ed2-e33c-4da2-9253-0cedc7c1f1da.jpg'),
PosixPath('10_whole_foods/train/carrots/3177e6dc-46b4-47e2-8233-c89560b2887f.jpg'),
PosixPath('10_whole_foods/train/carrots/b1fb5ca2-6a1c-49dc-bf93-93d36c974fed.jpg'),
PosixPath('10_whole_foods/train/carrots/5d7f0398-a383-4fdd-a80f-b2eaedbf2a1e.jpg'),
PosixPath('10_whole_foods/train/carrots/2f953461-0658-41b4-89fa-2b055c3fc6e4.jpg'),
PosixPath('10_whole_foods/train/carrots/04d7f11b-6374-426c-a7dc-2f9a4a22447c.jpg'),
PosixPath('10_whole_foods/train/carrots/33ef313f-8f33-46e7-a7f6-734e3b71ede0.jpg'),
PosixPath('10_whole_foods/train/carrots/6838798d-62fc-48e1-a39e-588d5b191540.jpg'),
PosixPath('10_whole_foods/train/carrots/8d484eef-f335-4821-b60f-cea3245afeda.jpg'),
PosixPath('10_whole_foods/train/carrots/ae9f3bbf-9cd3-4bf0-8456-cf2d60dba175.jpg'),
PosixPath('10_whole_foods/train/carrots/800c936d-0a5e-40ed-938f-1a2811e2c49e.jpg'),
PosixPath('10_whole_foods/train/carrots/d1218236-93a9-490b-bae2-b792ed8ed54d.jpg'),
PosixPath('10_whole_foods/train/carrots/08455dab-7c38-4c43-b338-a9e2b35a21bd.jpg'),
PosixPath('10_whole_foods/train/carrots/ebae6966-4e0f-421d-b3c8-efc31dee9fee.jpg'),
PosixPath('10_whole_foods/train/carrots/5b4223b8-ed84-4436-840b-b8cd6183ed15.jpg'),
PosixPath('10_whole_foods/train/carrots/1a3187ba-c708-4e6a-8681-3ae164618445.jpg'),
PosixPath('10_whole_foods/train/carrots/59b5d93c-04b7-4285-b87f-adef598b12bf.jpg'),
PosixPath('10_whole_foods/train/carrots/6296be86-b90c-4165-b823-25125a7eaee2.jpg'),
PosixPath('10_whole_foods/train/carrots/58c34b81-eb4b-4044-9977-ca16d438dd84.jpg'),
PosixPath('10_whole_foods/train/carrots/ffbb26ad-766b-4286-9da8-411bc44bf68e.jpg'),
PosixPath('10_whole_foods/train/carrots/741621a7-6340-46fa-882f-67c30ac02603.jpg'),
PosixPath('10_whole_foods/train/carrots/d89203b4-1450-4463-8a52-6518aaab105b.jpg'),
PosixPath('10_whole_foods/train/carrots/b1ad99e0-28e0-43e9-9192-2ed10ce33ea8.jpg'),
PosixPath('10_whole_foods/train/carrots/b42dde55-9300-4bda-a3c5-90370cd8c557.jpg'),
PosixPath('10_whole_foods/train/carrots/669ce445-78b6-421f-9b99-66d45ab119b3.jpg'),
PosixPath('10_whole_foods/train/carrots/648f2d23-adfb-4fec-a70c-87cf2f67b0b5.jpg'),
PosixPath('10_whole_foods/train/carrots/e9a4b3f2-a9b9-4c21-9cb0-3530792a3161.jpg'),
PosixPath('10_whole_foods/train/carrots/85273c57-68aa-4588-84eb-0537e2987fd7.jpg'),
PosixPath('10_whole_foods/train/carrots/1ce47ae5-2ee7-4dc4-b639-4aca9ee6fae4.jpg'),
PosixPath('10_whole_foods/train/carrots/80a7386c-fd93-40ed-b7de-3f60dc9f552f.jpg'),
PosixPath('10_whole_foods/train/carrots/efa7c11d-855c-48e4-aba5-081c97956f48.jpg'),
PosixPath('10_whole_foods/train/carrots/65bbb37e-5e7f-464f-8144-6fcdb05a8cd9.jpg'),
PosixPath('10_whole_foods/train/carrots/f9f67c61-6e29-4d06-a88a-0fc70464d70e.jpg'),
PosixPath('10_whole_foods/train/carrots/da0e5c00-890b-4712-a08b-639f9560245e.jpg'),
PosixPath('10_whole_foods/train/carrots/a065670c-406a-4b5a-8bbe-5fffb16b1fdb.jpg'),
PosixPath('10_whole_foods/train/carrots/e234074d-afaa-4e7f-b2dd-1a594591ee55.jpg'),
PosixPath('10_whole_foods/train/carrots/38301ad4-33c6-4b3a-b288-7513f36c524d.jpg'),
PosixPath('10_whole_foods/train/carrots/d404f85f-816c-4309-a9a8-87f781384bd2.jpg'),
PosixPath('10_whole_foods/train/carrots/ff23acfe-6165-4089-8315-912c5b9e5f8b.jpg'),
PosixPath('10_whole_foods/train/carrots/312bdfec-adf4-473e-aa1a-681a9ae69d37.jpg'),
PosixPath('10_whole_foods/train/carrots/b8600be7-9cd4-40e9-b000-81a817336afa.jpg'),
PosixPath('10_whole_foods/train/carrots/5f1899e6-a0f2-4de4-88d0-c510f8bfcc7c.jpg'),
PosixPath('10_whole_foods/train/carrots/998c37ae-0f79-44b0-b6bd-3d8da04002a3.jpg'),
PosixPath('10_whole_foods/train/carrots/8a89fb55-75bf-4b63-a0f4-f14261f3f0a2.jpg'),
PosixPath('10_whole_foods/train/carrots/e9b3e12b-cc7f-4916-bf34-4d717a4676a6.jpg'),
PosixPath('10_whole_foods/train/carrots/77cdc587-5d02-492a-8354-1b76c320bf4a.jpg'),
PosixPath('10_whole_foods/train/carrots/cf45f277-5b61-4338-bc81-d6c852bc1976.jpg'),
PosixPath('10_whole_foods/train/carrots/c4484b02-1359-415e-84d0-a99d669c6f63.jpg'),
PosixPath('10_whole_foods/train/carrots/bd967ca7-4f1b-4e30-9569-0f659b3a3ddb.jpg'),
PosixPath('10_whole_foods/train/carrots/585beff7-3eb5-4df5-8c37-6bfa0ea1d687.jpg'),
PosixPath('10_whole_foods/train/carrots/510ce9b4-fcc1-4c39-a09a-f9423d2126e2.jpg'),
PosixPath('10_whole_foods/train/carrots/492d4b65-fa2f-4732-8d56-01ce40653eaf.jpg'),
PosixPath('10_whole_foods/train/carrots/1b725d66-9843-4a99-be81-1f80c1f7548e.jpg'),
PosixPath('10_whole_foods/train/carrots/c27891f7-7868-47bf-a6db-537f0939cb8a.jpg'),
PosixPath('10_whole_foods/train/carrots/b87a8a86-6a36-452c-b90d-363017e2d0ce.jpg'),
PosixPath('10_whole_foods/train/carrots/624eb795-7896-4e80-92cb-e4bba7cf89cf.jpg'),
PosixPath('10_whole_foods/train/carrots/45bec6da-28b6-4926-8a9c-f815011c9e52.jpg'),
PosixPath('10_whole_foods/train/carrots/961a4461-4528-459c-9d64-d6b55574836a.jpg'),
PosixPath('10_whole_foods/train/carrots/73320a72-7659-4e8a-827b-6e75eba127f8.jpg'),
PosixPath('10_whole_foods/train/carrots/522c2125-a627-425e-9f9a-6dbb496df4ef.jpg'),
PosixPath('10_whole_foods/train/carrots/5e0d2b93-4c61-4b7a-8d8e-88aa46dcbab3.jpg'),
PosixPath('10_whole_foods/train/mushrooms/4af6474d-defc-4c56-9a8b-70675d9b3eb3.jpg'),
PosixPath('10_whole_foods/train/mushrooms/930e61b0-5f47-48d1-ae3d-6a5703cd0947.jpg'),
PosixPath('10_whole_foods/train/mushrooms/195cfc61-d614-4f59-96f3-b7a2bd0e089d.jpg'),
PosixPath('10_whole_foods/train/mushrooms/426fd93e-c63a-44d7-9021-a168e379a191.jpg'),
PosixPath('10_whole_foods/train/mushrooms/868e1bbc-3f30-4887-a27e-25499ef4e26b.jpg'),
PosixPath('10_whole_foods/train/mushrooms/e284bf47-533a-41be-b76d-712ff46400b1.jpg'),
PosixPath('10_whole_foods/train/mushrooms/bb1b96b9-6e31-4e43-9937-64bc38c653a4.jpg'),
PosixPath('10_whole_foods/train/mushrooms/c5ab5326-f4ee-4961-8f4d-89ee2b6fb548.jpg'),
PosixPath('10_whole_foods/train/mushrooms/1a3e3094-dd60-41a5-94d5-a593ac42a7f8.jpg'),
PosixPath('10_whole_foods/train/mushrooms/ffea1114-d652-4f21-ae44-338e2240ea9c.jpg'),
PosixPath('10_whole_foods/train/mushrooms/d6a7a4a7-82a6-445d-9634-a0f5e72c40b7.jpg'),
PosixPath('10_whole_foods/train/mushrooms/5d03f543-f746-4161-a8cb-07cdc925fda5.jpg'),
PosixPath('10_whole_foods/train/mushrooms/f22ca4fc-f833-4732-8583-bf9a69e7de82.jpg'),
PosixPath('10_whole_foods/train/mushrooms/1c665dd8-852e-4672-bf6e-51e68df1ffe1.jpg'),
PosixPath('10_whole_foods/train/mushrooms/fa8a9f3a-bf84-414f-9484-32e86b42484b.jpg'),
PosixPath('10_whole_foods/train/mushrooms/6414316e-0331-4ec3-b6a0-e518176785b9.jpg'),
PosixPath('10_whole_foods/train/mushrooms/a687d31e-7c4b-4529-b0eb-f66c321b6965.jpg'),
PosixPath('10_whole_foods/train/mushrooms/b007bbd8-7bed-4a0f-b088-4926a74103f4.jpg'),
PosixPath('10_whole_foods/train/mushrooms/b9c276ce-5031-4350-b094-aaf08b75e6a7.jpg'),
PosixPath('10_whole_foods/train/mushrooms/e6026cf5-46e9-4913-a535-e6a8f0ddce6f.jpg'),
PosixPath('10_whole_foods/train/mushrooms/5d73e895-9289-4bbc-839a-680f794f832c.jpg'),
PosixPath('10_whole_foods/train/mushrooms/62cc13e4-36ec-42f7-8387-8f0683337ccd.jpg'),
PosixPath('10_whole_foods/train/mushrooms/998c48ec-a081-4254-8dfb-5a39ba49bf6b.jpg'),
PosixPath('10_whole_foods/train/mushrooms/83f38fec-65be-497a-af1f-f11a0fbcff84.jpg'),
PosixPath('10_whole_foods/train/mushrooms/080e01e9-00d5-4cd9-8b5a-693d29ac5a4d.jpg'),
PosixPath('10_whole_foods/train/mushrooms/364ecd9e-4eb6-46c8-9d9e-fd3cc370738b.jpg'),
PosixPath('10_whole_foods/train/mushrooms/1ed9f2e0-9f14-4a2d-a7ac-057c1f491680.jpg'),
PosixPath('10_whole_foods/train/mushrooms/699e99f0-1e04-4d65-bc00-e6130de2e2dc.jpg'),
PosixPath('10_whole_foods/train/mushrooms/14ba4e16-b558-4d8e-b04a-5cf8d09fd4fe.jpg'),
PosixPath('10_whole_foods/train/mushrooms/2a1a4932-fa2f-4cef-a684-ef8520dac0fc.jpg'),
PosixPath('10_whole_foods/train/mushrooms/1056aa55-1e7b-4f12-9737-bfce78dddf09.jpg'),
PosixPath('10_whole_foods/train/mushrooms/f2cbb8af-e9b8-42f3-affb-83d2c5d6fd84.jpg'),
PosixPath('10_whole_foods/train/mushrooms/671c6ab3-959f-4bee-a415-b2ee194ec98f.jpg'),
PosixPath('10_whole_foods/train/mushrooms/95bb8793-d716-47a4-aea7-7334be8eae39.jpg'),
PosixPath('10_whole_foods/train/mushrooms/2889c582-fdf2-4e36-84f1-8f0df06b58d6.jpg'),
PosixPath('10_whole_foods/train/mushrooms/63d8103e-6cda-4cd4-833a-50768ec60caf.jpg'),
PosixPath('10_whole_foods/train/mushrooms/4703d2b5-f452-467e-9708-e23ccda5296b.jpg'),
PosixPath('10_whole_foods/train/mushrooms/7118cd87-2daf-4b26-83da-b5e58a0ceaac.jpg'),
PosixPath('10_whole_foods/train/mushrooms/931a1608-452b-4351-a09b-cc345ce1d549.jpg'),
PosixPath('10_whole_foods/train/mushrooms/f4cf51b5-603b-47f6-9d09-c465c4c8602a.jpg'),
PosixPath('10_whole_foods/train/mushrooms/ca7e9218-350e-4696-ba72-740facf60f50.jpg'),
PosixPath('10_whole_foods/train/mushrooms/be689ded-dbf2-402a-a6a1-f78973d8e200.jpg'),
PosixPath('10_whole_foods/train/mushrooms/dea1a984-36b0-4583-9de3-b5dc7652125b.jpg'),
PosixPath('10_whole_foods/train/mushrooms/f0d2513e-8727-486b-891a-bc53c5224340.jpg'),
PosixPath('10_whole_foods/train/mushrooms/a2cf3ee7-fdd6-4b76-b329-493044a0fb66.jpg'),
PosixPath('10_whole_foods/train/mushrooms/6b0f0d90-99aa-4d13-ba5c-2ea3d9db563f.jpg'),
PosixPath('10_whole_foods/train/mushrooms/38ac4819-c562-40f2-b9b8-fe4221f8340f.jpg'),
PosixPath('10_whole_foods/train/mushrooms/ee244dd1-a227-4bc3-ae7d-3635202b2cb2.jpg'),
PosixPath('10_whole_foods/train/mushrooms/a8396fa2-f114-49e5-97ac-93dff2d3ddca.jpg'),
PosixPath('10_whole_foods/train/mushrooms/29d7b0e9-afdb-404f-91b8-51c855d23ba5.jpg'),
PosixPath('10_whole_foods/train/mushrooms/c2f57b7c-d7cb-4294-9c2f-53bba9068f91.jpg'),
PosixPath('10_whole_foods/train/mushrooms/760a335a-6585-49c6-9b7f-7f0b37455ae3.jpg'),
PosixPath('10_whole_foods/train/mushrooms/96e08e2c-ecc5-4cb8-be6e-5ff1ca5f9631.jpg'),
PosixPath('10_whole_foods/train/mushrooms/7a3ee5c6-49c7-4104-8446-2d6bc9198864.jpg'),
PosixPath('10_whole_foods/train/mushrooms/694482b0-b2f3-4571-9c10-c40b0f4111cb.jpg'),
PosixPath('10_whole_foods/train/mushrooms/3ab8bbfd-5e4f-4513-8dac-205a1cefbd8e.jpg'),
PosixPath('10_whole_foods/train/mushrooms/30984d79-d568-44b2-8521-22f8bc0a8bfc.jpg'),
PosixPath('10_whole_foods/train/mushrooms/9c2ffd40-a0c1-407b-a283-ae623ddf9873.jpg'),
PosixPath('10_whole_foods/train/mushrooms/b94b4cad-b642-4538-84e4-287cc548fc49.jpg'),
PosixPath('10_whole_foods/train/mushrooms/183c1c98-9e2f-48b3-ad36-e1b5ad5c0aa5.jpg'),
PosixPath('10_whole_foods/train/mushrooms/69a83700-740e-4dad-86db-0d0b541a1368.jpg'),
PosixPath('10_whole_foods/train/mushrooms/f7e76953-1b09-4f8f-9786-0eb18d43bf10.jpg'),
PosixPath('10_whole_foods/train/mushrooms/760c04ae-4e73-407d-84c5-60f0dd9d6177.jpg'),
PosixPath('10_whole_foods/train/mushrooms/b1c1f86b-7f3c-4869-87d7-5bc26dfbb314.jpg'),
PosixPath('10_whole_foods/train/mushrooms/4572c6c2-9436-43b1-a28c-7b27e2b65312.jpg'),
PosixPath('10_whole_foods/train/mushrooms/437bd2c2-a937-433d-87e8-e5558ffc3f98.jpg'),
PosixPath('10_whole_foods/train/apple/5ea7c93c-02c9-4838-85e4-7b393e47066c.jpg'),
PosixPath('10_whole_foods/train/apple/6399f4d9-c141-4088-95d4-0837e94943d7.jpg'),
PosixPath('10_whole_foods/train/apple/66eadb54-2134-431c-b650-c94fb47d8fec.jpg'),
PosixPath('10_whole_foods/train/apple/72e7aba2-ff8e-43ae-9315-c5bfe2de81b7.jpg'),
PosixPath('10_whole_foods/train/apple/a066c0b4-b460-466f-8576-3a204a1b6657.jpg'),
PosixPath('10_whole_foods/train/apple/36017ebc-51a3-4bb8-8458-7f5269476564.jpg'),
PosixPath('10_whole_foods/train/apple/7605ed26-8ed4-4dd8-bc45-c5c5543451ab.jpg'),
PosixPath('10_whole_foods/train/apple/f998df1f-b49c-4f75-8a43-4625e4074f26.jpg'),
PosixPath('10_whole_foods/train/apple/789f3404-84a7-4442-9fc1-d6a4e3b634fc.jpg'),
PosixPath('10_whole_foods/train/apple/9e15af35-2163-48a4-a989-e5713dfa1b7e.jpg'),
PosixPath('10_whole_foods/train/apple/33a83d12-e83a-4e6a-82c6-9cc7493d236b.jpg'),
PosixPath('10_whole_foods/train/apple/679c6ddb-a5a1-4548-bb43-b8e832ac25ef.jpg'),
PosixPath('10_whole_foods/train/apple/7819187d-7652-4ef7-a8ee-4934a88dfd99.jpg'),
PosixPath('10_whole_foods/train/apple/d591eb0a-aa60-4351-baf1-2e2e3cd976e0.jpg'),
PosixPath('10_whole_foods/train/apple/a31d1393-8613-49f3-a75d-3327bd7dcdf6.jpg'),
PosixPath('10_whole_foods/train/apple/4e0960f3-6c7f-4d13-a854-c948ff0c641c.jpg'),
PosixPath('10_whole_foods/train/apple/b2059926-439d-4689-a7bf-36883607d4c6.jpg'),
PosixPath('10_whole_foods/train/apple/c86a2ae8-3229-47f6-bfdb-52c24c915792.jpg'),
PosixPath('10_whole_foods/train/apple/200757eb-6def-4395-84ff-d466e0c12c2d.jpg'),
PosixPath('10_whole_foods/train/apple/05e937ad-80bf-4f8a-a7e9-92b00d5d6593.jpg'),
PosixPath('10_whole_foods/train/apple/f83feb45-42e4-4ecf-9e1b-f7bd7c2a07ab.jpg'),
PosixPath('10_whole_foods/train/apple/cbdaa6d0-55e4-47a7-b0b7-fe0ff60f6e51.jpg'),
PosixPath('10_whole_foods/train/apple/943a9459-5417-4115-becd-a5c448de9a19.jpg'),
PosixPath('10_whole_foods/train/apple/c11b515a-f5ee-4318-8f5e-9e60d3868781.jpg'),
PosixPath('10_whole_foods/train/apple/9c848805-4a24-4579-afd7-adc62460015d.jpg'),
PosixPath('10_whole_foods/train/apple/674f66c4-23be-4342-bae7-daad4133dc86.jpg'),
PosixPath('10_whole_foods/train/apple/622d2c38-1a20-48b8-a615-0b9c44ab4927.jpg'),
PosixPath('10_whole_foods/train/apple/2503ad13-4d22-4769-9f52-58205b47abf7.jpg'),
PosixPath('10_whole_foods/train/apple/0ba339b9-0eb1-43a1-a62a-2737e85e6a29.jpg'),
PosixPath('10_whole_foods/train/apple/95ada9f6-96d7-481d-b995-a7dc694be9c2.jpg'),
PosixPath('10_whole_foods/train/apple/af044322-e9ac-44ba-8472-52c5718dadc8.jpg'),
PosixPath('10_whole_foods/train/apple/5017c687-0eea-4704-9513-97a7ae9eb753.jpg'),
PosixPath('10_whole_foods/train/apple/dbc543f1-b8ce-4a50-bf01-dbd65f1a21b5.jpg'),
PosixPath('10_whole_foods/train/apple/0a8a17f2-b526-4ad1-82ec-832b79b3ef3c.jpg'),
PosixPath('10_whole_foods/train/apple/d9b10770-2f10-41fa-80d3-0a4060456499.jpg'),
PosixPath('10_whole_foods/train/apple/871d8b1c-00e9-4bc6-8584-5758610a47ed.jpg'),
PosixPath('10_whole_foods/train/apple/ed5b6fbe-204e-40b6-8110-f2aecbc8ff64.jpg'),
PosixPath('10_whole_foods/train/apple/dd3c9dce-e2c3-4eaa-b9f3-40b0ededbf7f.jpg'),
PosixPath('10_whole_foods/train/apple/9ea7d077-8f02-4f59-aad8-886e675bdf01.jpg'),
PosixPath('10_whole_foods/train/apple/3cc62c9b-7ea8-41f4-9579-787ffae2b458.jpg'),
PosixPath('10_whole_foods/train/apple/82c9a389-7ac6-4043-a404-856d97608b1e.jpg'),
PosixPath('10_whole_foods/train/apple/782b3d85-7cdc-4ac3-bb2b-1eed2324cc20.jpg'),
PosixPath('10_whole_foods/train/apple/217cb25a-56be-46be-b4d1-76b9edd1511d.jpg'),
PosixPath('10_whole_foods/train/apple/d376d944-9a69-429f-850e-dcbd4dad8a1f.jpg'),
PosixPath('10_whole_foods/train/apple/3f8fe2b7-f1b9-45da-8e53-7fd7949024a4.jpg'),
PosixPath('10_whole_foods/train/apple/a18f4504-8d9c-4bbe-b99e-a0c2aadd0913.jpg'),
PosixPath('10_whole_foods/train/apple/44eed694-cc8a-41b7-8482-14abee801fa7.jpg'),
PosixPath('10_whole_foods/train/apple/6d37580a-995e-41d9-a3db-414022ba5708.jpg'),
PosixPath('10_whole_foods/train/apple/7887b6a9-eacf-4150-9ac2-ac24fdd46a68.jpg'),
PosixPath('10_whole_foods/train/apple/0c0397c9-a760-4eee-86c2-8127be40bf8d.jpg'),
PosixPath('10_whole_foods/train/apple/3efd90ee-1519-40c2-877d-57cbde8ba29c.jpg'),
PosixPath('10_whole_foods/train/apple/bcbe6656-8a27-4e97-997b-da730247164c.jpg'),
PosixPath('10_whole_foods/train/apple/2bfd0d8b-40e1-4bab-9be5-9257f3370117.jpg'),
PosixPath('10_whole_foods/train/apple/4c667aec-1506-4c91-9ac6-291e0ef5f9be.jpg'),
PosixPath('10_whole_foods/train/apple/c88c06bc-1723-46da-b46b-e47a5f3adbd4.jpg'),
PosixPath('10_whole_foods/train/apple/069e0079-c839-4e55-a416-66906384c48f.jpg'),
PosixPath('10_whole_foods/train/apple/7aeda53b-1a4c-4922-ad61-0b8f1af8cacd.jpg'),
PosixPath('10_whole_foods/train/strawberries/97401b93-732f-4402-ac2f-605f0cf58e48.jpg'),
PosixPath('10_whole_foods/train/strawberries/7b5ba59f-ee4c-4b3e-a020-34b6cd96cf47.jpg'),
PosixPath('10_whole_foods/train/strawberries/cdd4887b-0618-4519-9882-70394dcf8e47.jpg'),
PosixPath('10_whole_foods/train/strawberries/aa0cddc4-c2c0-439e-b276-46c14e7575dd.jpg'),
PosixPath('10_whole_foods/train/strawberries/1fb5b9d2-482d-4663-b303-d108906069af.jpg'),
PosixPath('10_whole_foods/train/strawberries/098c3b3b-c1ea-4521-88a3-b34b703621f2.jpg'),
PosixPath('10_whole_foods/train/strawberries/a72f6647-58ed-4b7f-b78f-cef1bc723939.jpg'),
PosixPath('10_whole_foods/train/strawberries/889c22eb-09f4-41cf-a818-aa00c0971f85.jpg'),
PosixPath('10_whole_foods/train/strawberries/5c999765-3dae-4299-a855-43858bfe12ef.jpg'),
PosixPath('10_whole_foods/train/strawberries/3bfb634c-ebfd-4aaa-86a6-8e2b3943c9e0.jpg'),
PosixPath('10_whole_foods/train/strawberries/e44b09e4-dd0e-4e14-bf3a-af21f5e3431d.jpg'),
PosixPath('10_whole_foods/train/strawberries/b366091d-9b26-467d-8934-f052b95db39d.jpg'),
PosixPath('10_whole_foods/train/strawberries/5981ebd5-6e03-4350-b42a-dc4342de817b.jpg'),
PosixPath('10_whole_foods/train/strawberries/ca893056-526d-48e9-8335-c371c5a1455c.jpg'),
PosixPath('10_whole_foods/train/strawberries/035e904a-a551-444d-899e-583c8c1d888e.jpg'),
PosixPath('10_whole_foods/train/strawberries/0029454f-5be1-4cfc-be24-798c2632f90e.jpg'),
PosixPath('10_whole_foods/train/strawberries/d45385cd-49a8-4eb6-a7c7-c21254b63142.jpg'),
PosixPath('10_whole_foods/train/strawberries/b25594e2-95a0-4074-8bda-499b14c5d02e.jpg'),
PosixPath('10_whole_foods/train/strawberries/f9e3ac56-cfff-41b0-9f9e-ba9dc2a55580.jpg'),
PosixPath('10_whole_foods/train/strawberries/96ab325e-218b-4e4a-88dc-2a790114ef87.jpg'),
PosixPath('10_whole_foods/train/strawberries/d3d7aac5-6559-46b8-96da-bc681ef4a88c.jpg'),
PosixPath('10_whole_foods/train/strawberries/97a70b31-c99f-459b-be6c-8b64a67069c6.jpg'),
PosixPath('10_whole_foods/train/strawberries/9670bed3-b5f9-44f0-9633-59b83eab578c.jpg'),
PosixPath('10_whole_foods/train/strawberries/5aaaf57c-02a2-460c-90e5-fdb32fce300a.jpg'),
PosixPath('10_whole_foods/train/strawberries/dcf999ea-9124-4cc6-a1c1-1f0964ec07ea.jpg'),
PosixPath('10_whole_foods/train/strawberries/c32692fc-03b8-450d-8b40-8596d80c44ae.jpg'),
PosixPath('10_whole_foods/train/strawberries/6c2851b9-f6fd-437a-8879-c34957c1ab33.jpg'),
PosixPath('10_whole_foods/train/strawberries/4139d0ac-d331-44dc-b1ea-a400639d3d1c.jpg'),
PosixPath('10_whole_foods/train/strawberries/ff68ee91-aea7-4a2f-a1c8-e878f9dc7a67.jpg'),
PosixPath('10_whole_foods/train/strawberries/23f31526-5947-402a-bd29-9aa51252d60a.jpg'),
PosixPath('10_whole_foods/train/strawberries/b069c788-b9cd-4633-9b81-e088b0fe700a.jpg'),
PosixPath('10_whole_foods/train/strawberries/d03a665f-7808-4f76-9f2e-621aea6cc5f5.jpg'),
PosixPath('10_whole_foods/train/strawberries/2908904c-8116-4035-84d6-387891abba6b.jpg'),
PosixPath('10_whole_foods/train/strawberries/efd06ae3-068d-44ec-b8fe-b22e53433402.jpg'),
PosixPath('10_whole_foods/train/strawberries/2c9e50e1-2beb-4fca-8df1-ba7005657ef2.jpg'),
PosixPath('10_whole_foods/train/strawberries/12a8b99f-1d3e-4352-92d6-1a30013afa28.jpg'),
PosixPath('10_whole_foods/train/strawberries/65de5294-cc7e-45c9-80b1-515b291e8fc3.jpg'),
PosixPath('10_whole_foods/train/strawberries/ca2cf3f4-97d9-4b3c-881b-a7f8b089b555.jpg'),
PosixPath('10_whole_foods/train/strawberries/307f692b-6a05-4696-add9-734dd6e729df.jpg'),
PosixPath('10_whole_foods/train/strawberries/a3257516-359e-4bcc-bbaa-860e0369d1b7.jpg'),
PosixPath('10_whole_foods/train/strawberries/171a0679-a219-4b8a-a08d-1d5e7e9434d5.jpg'),
PosixPath('10_whole_foods/train/strawberries/bbf2113b-7f4a-4d77-9b55-e8276bc22837.jpg'),
PosixPath('10_whole_foods/train/strawberries/dcd086ff-7518-4926-b8c5-4e17aa7a08da.jpg'),
PosixPath('10_whole_foods/train/strawberries/38b104ed-0021-43b9-9d35-9d481ddb2f0c.jpg'),
PosixPath('10_whole_foods/train/strawberries/904c408a-aeb3-43d0-9f12-f17e23678593.jpg'),
PosixPath('10_whole_foods/train/strawberries/ae31f687-4113-4a9a-97fa-6b24744ed27e.jpg'),
PosixPath('10_whole_foods/train/strawberries/df52f837-270c-4dd3-ab60-7cd81299fdc1.jpg'),
PosixPath('10_whole_foods/train/strawberries/f93cc88b-1652-4d54-a221-f57f4b7aab93.jpg'),
PosixPath('10_whole_foods/train/strawberries/6f9f75a5-0093-4a24-989a-d178c27756f3.jpg'),
PosixPath('10_whole_foods/train/strawberries/3112d7b5-88b8-4571-8eb4-1b3a9830d873.jpg'),
PosixPath('10_whole_foods/train/strawberries/8a7dfc3d-4486-450a-aee6-9a191679f044.jpg'),
PosixPath('10_whole_foods/train/strawberries/c4db9c1e-24bf-4448-a285-9dfe637032f0.jpg'),
PosixPath('10_whole_foods/train/strawberries/24bdfb6d-144b-4f0f-bd19-9ad69b4ad609.jpg'),
PosixPath('10_whole_foods/train/strawberries/fb418dc4-eb0a-49f8-8dd2-f64f66a48924.jpg'),
PosixPath('10_whole_foods/train/strawberries/aa07b6f6-2b0d-48df-b4bb-a63ba46a8f0f.jpg'),
PosixPath('10_whole_foods/train/strawberries/21347ed7-25cc-4389-a8f5-4bf10d4fc4e3.jpg'),
PosixPath('10_whole_foods/train/strawberries/0b83764e-5ac4-44b8-8803-5c8f534d418a.jpg'),
PosixPath('10_whole_foods/train/strawberries/c604f6bd-e3a5-4e19-93b5-33620238d621.jpg'),
PosixPath('10_whole_foods/train/strawberries/44ab6fe3-debb-4eb1-af35-3d083e16ce76.jpg'),
PosixPath('10_whole_foods/train/strawberries/b167a507-a9f0-4f6a-9c58-3b94fd82fc55.jpg'),
PosixPath('10_whole_foods/train/strawberries/a83ce0df-3b9e-4fd4-b3bf-6b49b5d0d7fe.jpg'),
PosixPath('10_whole_foods/train/strawberries/913643a0-ce94-40a8-a141-70b9c1f0ca0f.jpg'),
PosixPath('10_whole_foods/train/strawberries/68a4750a-a152-40e2-b92e-23b2e01ae98c.jpg'),
PosixPath('10_whole_foods/train/strawberries/91649cc6-a311-439c-8817-918f7936f994.jpg'),
PosixPath('10_whole_foods/train/blueberries/7075a40d-5af3-4e52-be73-dcf535247685.jpg'),
PosixPath('10_whole_foods/train/blueberries/f7fd45b0-3093-4d04-b404-4e3bb53e54d1.jpg'),
PosixPath('10_whole_foods/train/blueberries/c94502a9-d339-4e5a-9f1c-11999092292a.jpg'),
PosixPath('10_whole_foods/train/blueberries/aee23af4-2a23-43f8-9158-70e694476dee.jpg'),
PosixPath('10_whole_foods/train/blueberries/8217a188-d74a-4c57-b593-9165d39a5deb.jpg'),
PosixPath('10_whole_foods/train/blueberries/7aac3c25-75ea-4f4a-98d9-86b2b14eb87b.jpg'),
PosixPath('10_whole_foods/train/blueberries/f70acf59-c56c-47b9-9414-2c4cf90dbb24.jpg'),
PosixPath('10_whole_foods/train/blueberries/cc1c09b2-03eb-4095-b168-04351b4a7bdb.jpg'),
PosixPath('10_whole_foods/train/blueberries/87345bd1-2c08-4520-90b1-fad7e78bbe85.jpg'),
PosixPath('10_whole_foods/train/blueberries/bc0f9710-8adf-4b3e-ba7b-22dfe3c44a6b.jpg'),
PosixPath('10_whole_foods/train/blueberries/63500473-db5e-4f8c-8734-7289f3ecb4e0.jpg'),
PosixPath('10_whole_foods/train/blueberries/95b49e0d-183d-49c1-b720-6a2a3db867dd.jpg'),
PosixPath('10_whole_foods/train/blueberries/63a15419-d734-432b-88b9-985b11899cec.jpg'),
PosixPath('10_whole_foods/train/blueberries/500c9f8d-06c1-4f24-b721-70eb7eda2f98.jpg'),
PosixPath('10_whole_foods/train/blueberries/d9e48e59-6a7a-4946-865b-65190aa095d3.jpg'),
PosixPath('10_whole_foods/train/blueberries/1d265357-b5da-441b-93da-e169c1226612.jpg'),
PosixPath('10_whole_foods/train/blueberries/b40cf5f9-08bc-4c4d-8a6c-5dff4a5ac364.jpg'),
PosixPath('10_whole_foods/train/blueberries/6728c049-fc21-438d-8594-4a7fd743772a.jpg'),
PosixPath('10_whole_foods/train/blueberries/1038301c-3070-4e48-9e01-1c799dc0b17b.jpg'),
PosixPath('10_whole_foods/train/blueberries/8a05d2b2-c5de-46ba-a0ca-5980ad50f146.jpg'),
PosixPath('10_whole_foods/train/blueberries/e3a47c01-50c0-4f42-b2c7-29af0d326824.jpg'),
PosixPath('10_whole_foods/train/blueberries/d358c24c-0e3b-4dd3-8d1c-a3cec65332d8.jpg'),
PosixPath('10_whole_foods/train/blueberries/4b1660bf-f931-49b9-9942-b9b1cd7e5efa.jpg'),
PosixPath('10_whole_foods/train/blueberries/3ed35cbe-c4fc-4d1e-b44b-3c52f85b377f.jpg'),
PosixPath('10_whole_foods/train/blueberries/3ab8b770-ee37-4dbc-b8df-db137bacf20d.jpg'),
PosixPath('10_whole_foods/train/blueberries/1ed0910a-2e5d-4f9c-80c5-fc3675ebcbe0.jpg'),
PosixPath('10_whole_foods/train/blueberries/3a7948a0-3f37-4189-a4eb-b1b94b57de48.jpg'),
PosixPath('10_whole_foods/train/blueberries/1fa97a62-1ceb-4771-b57d-eefedfa1bfa3.jpg'),
PosixPath('10_whole_foods/train/blueberries/f6892879-5617-4b7a-afce-02ef9c96852e.jpg'),
PosixPath('10_whole_foods/train/blueberries/0b0557b3-a873-4908-86b9-959c473ab181.jpg'),
PosixPath('10_whole_foods/train/blueberries/7b81ba02-d276-4664-a6f8-17c2cb1763aa.jpg'),
PosixPath('10_whole_foods/train/blueberries/e7de7527-cfe1-40a1-887d-504355ec39fa.jpg'),
PosixPath('10_whole_foods/train/blueberries/169af058-cb22-451a-ac8b-81c5bf042ae1.jpg'),
PosixPath('10_whole_foods/train/blueberries/ea6f47ed-a3ab-4d76-8037-639b42a46575.jpg'),
PosixPath('10_whole_foods/train/blueberries/5e8436d7-0631-4e01-b0d7-ce1ce1492287.jpg'),
PosixPath('10_whole_foods/train/blueberries/6d009249-d189-41dd-81cf-9799f03fe605.jpg'),
PosixPath('10_whole_foods/train/blueberries/9d8bedcb-906f-4e19-a334-8d38700432b3.jpg'),
PosixPath('10_whole_foods/train/blueberries/4bcfd42f-d422-4aca-8b77-abbcdc9d6b0f.jpg'),
PosixPath('10_whole_foods/train/blueberries/eb47a2f1-350f-4c65-b013-0c614d043642.jpg'),
PosixPath('10_whole_foods/train/blueberries/9e1fafb9-a63e-4a1f-a79a-7951560b16b7.jpg'),
PosixPath('10_whole_foods/train/blueberries/4612f2e4-7149-4419-b219-531c00e9b2f9.jpg'),
PosixPath('10_whole_foods/train/blueberries/1672194c-6df1-4a58-b430-70d9c01e653e.jpg'),
PosixPath('10_whole_foods/train/blueberries/cc13c60c-c5b7-4f8b-ab82-2ac562eab7f5.jpg'),
PosixPath('10_whole_foods/train/blueberries/c81babcd-db6c-496e-a968-18910610a18f.jpg'),
PosixPath('10_whole_foods/train/blueberries/b64d5a64-4f19-4070-8c4f-6cf313bc3d53.jpg'),
PosixPath('10_whole_foods/train/blueberries/2713696a-d926-47d8-80b8-ee89526a05b0.jpg'),
PosixPath('10_whole_foods/train/blueberries/62612b92-808f-4c68-b45d-fff923afadfb.jpg'),
PosixPath('10_whole_foods/train/blueberries/80c09736-4800-4b1b-be18-c453fbb64352.jpg'),
PosixPath('10_whole_foods/train/blueberries/f159f81d-de29-4ac5-8bb2-90f4bb6de81b.jpg'),
PosixPath('10_whole_foods/train/blueberries/aa4d3fb5-65cc-4958-8b56-5614ab8502a3.jpg'),
PosixPath('10_whole_foods/train/blueberries/2fc74a4d-18e0-427c-9b02-5cec57535f08.jpg'),
PosixPath('10_whole_foods/train/blueberries/d08b58f1-d8ad-459f-a6b8-e02a3dab0cd7.jpg'),
PosixPath('10_whole_foods/train/blueberries/5bc02724-97d3-4e97-a737-df7c2196fdfb.jpg'),
PosixPath('10_whole_foods/train/blueberries/148b6765-f843-4247-8ae4-5ab40993420e.jpg'),
PosixPath('10_whole_foods/train/blueberries/de1a310d-6609-47dd-aa47-b5ac3516c68f.jpg'),
PosixPath('10_whole_foods/train/blueberries/bc946fad-af72-473a-9027-cbc05c6877ae.jpg'),
PosixPath('10_whole_foods/train/blueberries/a5245f13-dd59-41fd-b276-dde9721c1aaf.jpg'),
PosixPath('10_whole_foods/train/blueberries/d7f28328-4aa2-4fe0-8cab-3f1f73048c80.jpg'),
PosixPath('10_whole_foods/train/blueberries/e08e3de4-7319-42d7-823f-c5cb84ed7ff6.jpg'),
PosixPath('10_whole_foods/train/banana/b1f0b833-58f8-413c-a425-ac2122d3dada.jpg'),
PosixPath('10_whole_foods/train/banana/d241320a-95e0-4e88-a1da-d341723ba1e8.jpg'),
PosixPath('10_whole_foods/train/banana/e3bf4732-dda4-4a42-8ff8-5b2f8845bf2c.jpg'),
PosixPath('10_whole_foods/train/banana/e843eed9-d0b9-4117-b9f7-826e0a85a728.jpg'),
PosixPath('10_whole_foods/train/banana/3b2bcfaa-aa03-488f-847d-b7479ca905e1.jpg'),
PosixPath('10_whole_foods/train/banana/0354d063-caf5-4c6f-b2e3-e92c004e07cc.jpg'),
PosixPath('10_whole_foods/train/banana/5b501a34-1779-4365-8181-37ac4e630b67.jpg'),
PosixPath('10_whole_foods/train/banana/34d60cab-143a-4234-83c0-720104b82451.jpg'),
PosixPath('10_whole_foods/train/banana/a29584f3-013c-4fef-b163-31bbf7904e94.jpg'),
PosixPath('10_whole_foods/train/banana/b66779da-f143-4b7e-839c-e356e13fb87d.jpg'),
PosixPath('10_whole_foods/train/banana/ee264d9d-2177-43ae-8e7b-1cf502bb917d.jpg'),
PosixPath('10_whole_foods/train/banana/afa610d0-93f8-4257-86b8-b1ee4ff41768.jpg'),
PosixPath('10_whole_foods/train/banana/aaeca2e4-a4a5-431b-8156-f63ec17bbe73.jpg'),
PosixPath('10_whole_foods/train/banana/1f89e4a2-ba9c-42e4-8ca4-345c2cec36e6.jpg'),
PosixPath('10_whole_foods/train/banana/5145dd29-e13b-4cde-af80-e986019454e1.jpg'),
PosixPath('10_whole_foods/train/banana/19babefb-24ee-49f5-82e2-3dd412aed615.jpg'),
PosixPath('10_whole_foods/train/banana/c6b750fa-b235-4531-9da6-81bacb71b32b.jpg'),
PosixPath('10_whole_foods/train/banana/7376a048-9f9a-46eb-81bb-94b887b4596d.jpg'),
PosixPath('10_whole_foods/train/banana/aefa2463-d577-4b42-aea9-fd3195237207.jpg'),
PosixPath('10_whole_foods/train/banana/aea34b00-8d68-4dfa-a580-8fc95f0ddd1b.jpg'),
PosixPath('10_whole_foods/train/banana/e93acc29-6221-484b-892d-105f5df331a3.jpg'),
PosixPath('10_whole_foods/train/banana/19a943ec-1bed-474b-bc37-b8132cd0e608.jpg'),
PosixPath('10_whole_foods/train/banana/372b8fd4-07f8-4744-b4a2-08736c9b82e9.jpg'),
PosixPath('10_whole_foods/train/banana/88fcd569-1191-4932-85ff-74dfde57dbfd.jpg'),
PosixPath('10_whole_foods/train/banana/4856f335-d642-4eb9-bd95-de1922ddd656.jpg'),
PosixPath('10_whole_foods/train/banana/6bbd869d-8236-45a7-a3f1-60d1da8886c0.jpg'),
PosixPath('10_whole_foods/train/banana/67afa30d-f04f-4a8d-b5b3-ae867ee7e831.jpg'),
PosixPath('10_whole_foods/train/banana/d3db1b9b-55bd-49b6-ba6f-b738c17baa22.jpg'),
PosixPath('10_whole_foods/train/banana/8c6c3a24-067f-401b-806f-a6ead602b628.jpg'),
PosixPath('10_whole_foods/train/banana/7b1835c1-76ba-4eac-baa0-07dfbe4943b3.jpg'),
PosixPath('10_whole_foods/train/banana/0dd60423-9ac5-4641-a8f0-15e2d057b478.jpg'),
PosixPath('10_whole_foods/train/banana/890be757-9500-4509-ab51-deee63e44f3a.jpg'),
PosixPath('10_whole_foods/train/banana/6ef0c4bb-564c-4dbe-992c-839b1bc8801d.jpg'),
PosixPath('10_whole_foods/train/banana/cf455b5f-ec26-4b50-8635-c391482770ee.jpg'),
PosixPath('10_whole_foods/train/banana/cf55d855-7ce6-4505-8969-441f7f270998.jpg'),
PosixPath('10_whole_foods/train/banana/10909a2c-2727-4349-8ce1-378aa346474f.jpg'),
PosixPath('10_whole_foods/train/banana/95e5196b-188b-47c5-8e44-41636bf6b4b0.jpg'),
PosixPath('10_whole_foods/train/banana/eee0afef-1b15-456b-a16a-517a6dd07a35.jpg'),
PosixPath('10_whole_foods/train/banana/f6e21179-765f-4293-b653-ea9ae8487d35.jpg'),
PosixPath('10_whole_foods/train/banana/4daac830-be3a-4cfb-930b-7900c350d21c.jpg'),
PosixPath('10_whole_foods/train/banana/cdd5e7b9-352a-47b3-bf70-7189446bc89e.jpg'),
PosixPath('10_whole_foods/train/banana/36afae0b-0080-4c90-9a89-216c89f41955.jpg'),
PosixPath('10_whole_foods/train/banana/a92cca12-99e3-456e-9637-470e6e50f508.jpg'),
PosixPath('10_whole_foods/train/banana/05bfd7ee-f221-4bd4-96c8-13f7faea4e8c.jpg'),
PosixPath('10_whole_foods/train/banana/5cc5eef6-bab4-49a4-a887-5d9d480ba882.jpg'),
PosixPath('10_whole_foods/train/banana/818f9f1a-cb10-440a-ac02-c960a5bf7a82.jpg'),
PosixPath('10_whole_foods/train/banana/d4753932-c587-4faa-9795-4e6b0b120360.jpg'),
PosixPath('10_whole_foods/train/banana/8f43c388-302e-44a0-b27a-d6649fd891be.jpg'),
PosixPath('10_whole_foods/train/banana/e394a984-0ac5-484b-b30f-922034a03acd.jpg'),
PosixPath('10_whole_foods/train/banana/a5fafbc7-a922-4c99-a09b-bf97f91a46ae.jpg'),
PosixPath('10_whole_foods/train/banana/565ecf02-3b30-4e86-97f9-864920cc6361.jpg'),
PosixPath('10_whole_foods/train/banana/07b640b1-5a18-4531-ac4d-474a29e5930d.jpg'),
PosixPath('10_whole_foods/train/banana/bc143685-c27d-4e99-9d22-54b681cd1fbe.jpg'),
PosixPath('10_whole_foods/train/banana/ffbe5b3e-455a-4d9c-a5f0-5f2ca66ecadf.jpg'),
PosixPath('10_whole_foods/train/banana/52e980b2-0c99-41d9-b94b-e51a9c8c3510.jpg'),
PosixPath('10_whole_foods/train/banana/6d3f3c4e-18aa-4374-81a1-b46d3c57a7f9.jpg'),
PosixPath('10_whole_foods/train/banana/a5b5898e-8ceb-4101-8c61-87b26463ef3e.jpg'),
PosixPath('10_whole_foods/train/banana/68c87a38-39d4-4dac-8e6b-96a106bf3ee4.jpg'),
PosixPath('10_whole_foods/train/beef/07cbc113-1439-4ce8-a8dc-077b74943c8e.jpg'),
PosixPath('10_whole_foods/train/beef/fef95c0e-51e1-4c20-8226-6b908da3c8d3.jpg'),
PosixPath('10_whole_foods/train/beef/8b456d92-3f39-415b-8f02-d98698cc7ee4.jpg'),
PosixPath('10_whole_foods/train/beef/24c6032c-0f3f-445a-97af-7c083d7cf3df.jpg'),
PosixPath('10_whole_foods/train/beef/b7d78acc-5d8c-411c-9317-e3ef9d1a082d.jpg'),
PosixPath('10_whole_foods/train/beef/c0a46db7-c59c-47ba-867d-1d89a0e705c5.jpg'),
PosixPath('10_whole_foods/train/beef/2e4f05ac-0678-4a4f-99cb-64b107256572.jpg'),
PosixPath('10_whole_foods/train/beef/1a863c13-9c14-47a4-8497-f24dedf5e07a.jpg'),
PosixPath('10_whole_foods/train/beef/362471b3-801e-482f-8c8c-9e33e021a20c.jpg'),
PosixPath('10_whole_foods/train/beef/75b7fdfc-290c-48d7-9cb3-ff1fb3e1c856.jpg'),
PosixPath('10_whole_foods/train/beef/35edeace-f3db-4cb6-8a03-580318543f57.jpg'),
PosixPath('10_whole_foods/train/beef/3f91451a-575d-4637-89ce-0cbb4895949c.jpg'),
PosixPath('10_whole_foods/train/beef/ec21dd1d-0643-4f90-8f92-b622930575bb.jpg'),
PosixPath('10_whole_foods/train/beef/cb3f63d7-0b1f-4de5-9952-8433df9ef895.jpg'),
PosixPath('10_whole_foods/train/beef/eb195b4d-7ac4-43ae-9cae-06b71583f21d.jpg'),
PosixPath('10_whole_foods/train/beef/5b8b94c0-651e-4e0d-84cc-f18d651799bb.jpg'),
PosixPath('10_whole_foods/train/beef/6f952334-34b9-4394-838d-f21d2419687c.jpg'),
PosixPath('10_whole_foods/train/beef/d3f068e3-6c0e-41e9-a48c-86057416a9b6.jpg'),
PosixPath('10_whole_foods/train/beef/cdc860d7-4af2-4a8b-8186-188bd59ea251.jpg'),
PosixPath('10_whole_foods/train/beef/c1acecb0-83fc-418a-a31f-cd1403fad8bc.jpg'),
PosixPath('10_whole_foods/train/beef/4349473d-1876-4396-8b10-1f43d63fe85f.jpg'),
PosixPath('10_whole_foods/train/beef/2b5998b3-fa0e-479e-943d-102c9a89955b.jpg'),
PosixPath('10_whole_foods/train/beef/67a57d9f-e522-4f89-a830-b28a3c4cc081.jpg'),
PosixPath('10_whole_foods/train/beef/5267b62d-1af8-4b31-803f-56fcdf877434.jpg'),
PosixPath('10_whole_foods/train/beef/03fb86c3-2a4f-4f36-97cb-afee7272ae0c.jpg'),
PosixPath('10_whole_foods/train/beef/95d29e32-0852-424c-814a-61056bc968b1.jpg'),
PosixPath('10_whole_foods/train/beef/04eb6cab-81ba-461c-82b6-0a52f25dff2a.jpg'),
PosixPath('10_whole_foods/train/beef/49f945a0-47a7-4a07-a0fa-756d459cbd88.jpg'),
PosixPath('10_whole_foods/train/beef/f591bf5f-67e4-4f45-9785-35f6e751ef9c.jpg'),
PosixPath('10_whole_foods/train/beef/2be8c80c-2cec-4a62-bc0d-e37faf321dbe.jpg'),
PosixPath('10_whole_foods/train/beef/d7b8f148-08c6-45a6-beea-8854fd6d4adb.jpg'),
PosixPath('10_whole_foods/train/beef/63c83ec6-fe6c-49e5-bf72-e28d6573e4b8.jpg'),
PosixPath('10_whole_foods/train/beef/59895e83-90dc-45f7-bcfa-046be985b3ea.jpg'),
PosixPath('10_whole_foods/train/beef/fe74d607-bf77-4d6d-846c-29cf89e20748.jpg'),
PosixPath('10_whole_foods/train/beef/8838e828-ab49-4825-80b5-2c57a6b61f38.jpg'),
PosixPath('10_whole_foods/train/beef/70c323cf-c9f0-4e60-a74d-2052bd7a51cc.jpg'),
PosixPath('10_whole_foods/train/beef/9a0183df-4314-4a34-b2fd-be82efcb456a.jpg'),
PosixPath('10_whole_foods/train/beef/ee89daa8-fd3d-4a1d-87bd-dfc6b3c8d261.jpg'),
PosixPath('10_whole_foods/train/beef/b67e258b-4b08-4212-9e67-03e3e8318df0.jpg'),
PosixPath('10_whole_foods/train/beef/61c51381-ac91-4304-8e3a-7a42f6c4ab89.jpg'),
PosixPath('10_whole_foods/train/beef/416d1634-e944-4684-a9c5-5b28d4937b07.jpg'),
PosixPath('10_whole_foods/train/beef/4b6e8d07-718a-4c6f-9d4d-db85a6484e35.jpg'),
PosixPath('10_whole_foods/train/beef/c83d0730-2f70-4f2a-8824-89f6976f9b6f.jpg'),
PosixPath('10_whole_foods/train/beef/554faab0-48e3-4529-871b-a396e598b8d4.jpg'),
PosixPath('10_whole_foods/train/beef/e1464492-31d8-4f11-9bf3-3390465794de.jpg'),
PosixPath('10_whole_foods/train/beef/4a91ab28-54ef-4843-958c-b745ba116b86.jpg'),
PosixPath('10_whole_foods/train/beef/79d128d9-c6d1-4955-bf5d-0cde59f52b4a.jpg'),
PosixPath('10_whole_foods/train/beef/dc35d908-c516-494a-97a5-ba8d9b59d568.jpg'),
PosixPath('10_whole_foods/train/beef/6caf86b4-c99d-4b22-8dd8-13e64eeacea7.jpg'),
PosixPath('10_whole_foods/train/beef/c05c3f4d-0c6c-4b11-8851-f047d8a73961.jpg'),
PosixPath('10_whole_foods/train/beef/86e78330-5749-40a6-8bb7-4cd6dde893c3.jpg'),
PosixPath('10_whole_foods/train/beef/64e2e61b-b379-4f97-87b8-ab240b1f6c00.jpg'),
PosixPath('10_whole_foods/train/beef/b322db29-c8a5-44c7-a45e-1fdc3db9a54d.jpg'),
PosixPath('10_whole_foods/train/beef/d3e6f269-34ca-404c-b609-33fa0fd95d8a.jpg'),
PosixPath('10_whole_foods/train/beef/6a3567cb-c175-432f-b8c7-5518b1c91d95.jpg'),
PosixPath('10_whole_foods/train/beef/0e1f0ae0-a35a-45c1-b5ac-a5cab3c2fbf5.jpg'),
PosixPath('10_whole_foods/train/beef/5e05cee2-d444-4da2-9c2a-1f0dbbb679de.jpg'),
PosixPath('10_whole_foods/train/beef/7f61502f-6d96-45ba-b5f9-1d435b1a073e.jpg'),
PosixPath('10_whole_foods/train/beef/92f17476-2fc3-41be-8e08-54e9ac85b38e.jpg'),
PosixPath('10_whole_foods/train/beef/ec0dad38-79b1-43b4-8717-2679dbf0496b.jpg'),
PosixPath('10_whole_foods/train/beef/59be766c-8d4a-4657-9bcd-ceb6f48359a1.jpg'),
PosixPath('10_whole_foods/train/beef/05cb6c44-72e2-473a-9b1d-d55d9f7b400c.jpg'),
PosixPath('10_whole_foods/train/beef/184676e3-670d-4a59-8737-dcfd0a01d081.jpg'),
PosixPath('10_whole_foods/train/beef/de99a659-84c1-4ec8-83a5-2428bfd88820.jpg'),
PosixPath('10_whole_foods/train/beef/7b1821ef-8182-4282-8d71-6eb03911539d.jpg'),
PosixPath('10_whole_foods/train/beef/01113352-aef7-4d26-863c-83c1f5c95042.jpg'),
PosixPath('10_whole_foods/train/beef/bdad9ca3-b399-441b-bfa2-a62fe24087c7.jpg'),
PosixPath('10_whole_foods/train/beef/b8b117bb-4088-47c6-a098-4a4fb22ff0eb.jpg'),
PosixPath('10_whole_foods/train/beef/f7f0ce88-dbbb-49de-9833-5705ebe1bfa0.jpg'),
PosixPath('10_whole_foods/train/beef/9eb42fd7-7ff7-4b69-87f0-2ee20ee9a277.jpg'),
PosixPath('10_whole_foods/train/beef/1f0e5dbd-76a9-48f8-8d27-7bb461b082a5.jpg'),
PosixPath('10_whole_foods/train/beef/f120d3d0-8a77-4ba2-a422-8cff899ad1d4.jpg'),
PosixPath('10_whole_foods/train/beef/633481a0-8223-4d1d-925d-d72c97abe942.jpg'),
PosixPath('10_whole_foods/train/beef/49e1ce98-1273-4077-a269-f527f37767bc.jpg'),
PosixPath('10_whole_foods/train/egg/df4cdfa6-9deb-4275-9978-3826a2173fa4.jpg'),
PosixPath('10_whole_foods/train/egg/ef2a3a8b-aa91-401b-993c-4570d62aacbf.jpg'),
PosixPath('10_whole_foods/train/egg/99945207-59c2-4370-a764-5cb50d222892.jpg'),
PosixPath('10_whole_foods/train/egg/14fdec13-d06a-4c41-a674-b5f6d222ac1a.jpg'),
PosixPath('10_whole_foods/train/egg/ecfa2ca5-63e2-4d5a-afc6-f89a83d060e6.jpg'),
PosixPath('10_whole_foods/train/egg/1ba8ddf0-ac86-4243-abbc-e1e4ce6961ae.jpg'),
PosixPath('10_whole_foods/train/egg/50617ee6-8aa1-4cf5-9b96-4a3bb7bec8c2.jpg'),
PosixPath('10_whole_foods/train/egg/3ff1af80-d6f6-4e05-9a45-71ed3a1bcb2b.jpg'),
PosixPath('10_whole_foods/train/egg/7288db55-1d69-451c-9320-376ffa002531.jpg'),
PosixPath('10_whole_foods/train/egg/a8af5ff7-95a7-4ff5-8d87-8d5c71d3f1c8.jpg'),
PosixPath('10_whole_foods/train/egg/0f25c46f-048c-44cf-b070-84d4a5bfcc94.jpg'),
PosixPath('10_whole_foods/train/egg/fb9c31fc-9f7e-4d4a-98a5-b0d09aba580a.jpg'),
PosixPath('10_whole_foods/train/egg/cfedeb34-6ff6-4b65-81f0-865247daabf6.jpg'),
PosixPath('10_whole_foods/train/egg/9295a6d2-c882-4227-a01b-ee5067f81077.jpg'),
PosixPath('10_whole_foods/train/egg/6fd54a72-a491-4d67-9411-412da49e7db9.jpg'),
PosixPath('10_whole_foods/train/egg/820859f8-72b7-4c71-9cc4-188506ad6485.jpg'),
PosixPath('10_whole_foods/train/egg/a382315c-70e6-4a20-bc2c-4943856eec66.jpg'),
PosixPath('10_whole_foods/train/egg/6d590fed-a0d6-4f3a-b33c-0fef15480929.jpg'),
PosixPath('10_whole_foods/train/egg/632387d2-9ac3-46c5-b69f-a3bc28ff8f9e.jpg'),
PosixPath('10_whole_foods/train/egg/c41a6859-a785-4c14-bf5c-4428ece22f92.jpg'),
PosixPath('10_whole_foods/train/egg/2ad5d570-2ef6-432b-9d93-6e51cfc2dffc.jpg'),
PosixPath('10_whole_foods/train/egg/e7f51f91-79dc-49d7-bb1c-baca6cfc8c97.jpg'),
PosixPath('10_whole_foods/train/egg/101b7fc6-045a-40ad-bc76-a68bffa732cd.jpg'),
PosixPath('10_whole_foods/train/egg/a6007d2d-774a-435b-89e1-33268da2abd8.jpg'),
PosixPath('10_whole_foods/train/egg/d0fb9063-0303-4b16-b3fd-9c4201e6a289.jpg'),
PosixPath('10_whole_foods/train/egg/eb6e45d3-4f97-42fc-b864-31d6ba6be96a.jpg'),
PosixPath('10_whole_foods/train/egg/b4a86bec-8ee9-431b-803f-6f313fdcd826.jpg'),
PosixPath('10_whole_foods/train/egg/1e6231cf-62f4-4c8b-a2af-0cfb9747ba2b.jpg'),
PosixPath('10_whole_foods/train/egg/159c388a-9bd4-4916-bd3b-4c0f54db32e4.jpg'),
PosixPath('10_whole_foods/train/egg/9c764572-1ddb-4bc4-a816-7a80de3f546e.jpg'),
PosixPath('10_whole_foods/train/egg/0597bfb5-8e55-4ef1-9ca2-3f18bf48fdcb.jpg'),
PosixPath('10_whole_foods/train/egg/a181dde3-fe90-4c7c-9a92-9014f77a6b28.jpg'),
PosixPath('10_whole_foods/train/egg/2a414962-26e8-4c29-b8a8-cef95ff81e2d.jpg'),
PosixPath('10_whole_foods/train/egg/71b91e71-0778-43c7-a5b9-1666441fc518.jpg'),
PosixPath('10_whole_foods/train/egg/7c45771c-5eb3-43df-957b-62787035c310.jpg'),
PosixPath('10_whole_foods/train/egg/9ea8bbb6-f22a-412c-ac67-d818d5fa9c33.jpg'),
PosixPath('10_whole_foods/train/egg/7b4e7fa9-5767-4bd1-b25a-e8971864074a.jpg'),
PosixPath('10_whole_foods/train/egg/ba41b7dc-ebe9-42fb-b977-7f606abe2fad.jpg'),
PosixPath('10_whole_foods/train/egg/f94a26d0-3ae7-4e3d-9619-f61cbba9c798.jpg'),
PosixPath('10_whole_foods/train/egg/716cd0ad-385f-46b5-bc7d-3bbc6d8a5cc7.jpg'),
PosixPath('10_whole_foods/train/egg/86c49740-a906-4b6f-a54b-9e9ba874635d.jpg'),
PosixPath('10_whole_foods/train/egg/8a8fb761-f3a0-4a2e-a4cc-3bb082013376.jpg'),
PosixPath('10_whole_foods/train/egg/54428b1c-f76f-4d51-ad94-aecf66975283.jpg'),
PosixPath('10_whole_foods/train/egg/46a1be3b-fec4-4fc4-9115-08de91971e8d.jpg'),
PosixPath('10_whole_foods/train/egg/9606212a-c2e8-4f66-99ad-ac1695b04738.jpg'),
PosixPath('10_whole_foods/train/egg/0b2d43a6-5be0-4640-9055-358e5341b67f.jpg'),
PosixPath('10_whole_foods/train/egg/639a7d65-b484-4235-b4b5-f180d24981a5.jpg'),
PosixPath('10_whole_foods/train/egg/eaa00ed4-933f-45e0-bdeb-a4c70624b8a5.jpg'),
PosixPath('10_whole_foods/train/egg/4bcf1efb-e76b-425c-a980-d20fd3433346.jpg'),
PosixPath('10_whole_foods/train/egg/792ac493-16d7-47a4-9272-a4d3eb9fda4d.jpg'),
PosixPath('10_whole_foods/train/egg/6da5ab29-276c-4dfd-89ab-bfb22a5ceceb.jpg'),
PosixPath('10_whole_foods/train/egg/1271fc54-ec04-423c-90d9-fbafda2aa004.jpg'),
PosixPath('10_whole_foods/train/egg/e1070409-057d-422f-9015-490a7a8d4fac.jpg'),
PosixPath('10_whole_foods/train/egg/bd7c0a46-6f3c-409e-ab9e-46d38478c316.jpg'),
PosixPath('10_whole_foods/train/egg/3180c2ed-9bd2-43ee-8d61-bda1e3ecad11.jpg'),
PosixPath('10_whole_foods/train/egg/cb5c921c-3ca5-480d-8f69-8595d16e8fa3.jpg'),
PosixPath('10_whole_foods/train/egg/f829c088-9269-4065-9998-dd363da54e41.jpg'),
PosixPath('10_whole_foods/train/egg/32ab60ae-bf0a-42a9-9cf7-272799e65d12.jpg'),
PosixPath('10_whole_foods/train/egg/1aa052ad-8be2-4f87-9084-4918bfb975e6.jpg'),
PosixPath('10_whole_foods/train/egg/9d7117b4-a38b-40cb-acce-f71ff96e035b.jpg'),
PosixPath('10_whole_foods/train/egg/82509ea3-7561-4da8-9114-df1bf839b8d0.jpg'),
PosixPath('10_whole_foods/train/egg/4908efed-f7b7-444f-b0a3-a8fa1a85be5e.jpg'),
PosixPath('10_whole_foods/train/egg/df311acf-f771-4378-a146-345a7fd6f5f3.jpg'),
PosixPath('10_whole_foods/train/egg/97062c0f-a51f-4bfd-80f2-3ed85c74984d.jpg'),
PosixPath('10_whole_foods/train/egg/7f611aed-5f89-472b-831c-756e7428b149.jpg'),
PosixPath('10_whole_foods/train/honey/bc8fc207-e6a6-4fd4-986e-de3610666aa5.jpg'),
PosixPath('10_whole_foods/train/honey/141f232e-4f05-4c59-bdc4-a9deeef9a213.jpg'),
PosixPath('10_whole_foods/train/honey/77eea2a6-b52a-4827-aa47-48e60961dc48.jpg'),
PosixPath('10_whole_foods/train/honey/58a01e91-567f-4499-aca9-f88f8b841b71.jpg'),
PosixPath('10_whole_foods/train/honey/657320d7-0584-4d2e-9d69-892078dab77f.jpg'),
PosixPath('10_whole_foods/train/honey/739a0986-68a5-401b-bcc7-2c488de8f43a.jpg'),
PosixPath('10_whole_foods/train/honey/a788e88e-4c6e-4a81-afc0-5bc965195e86.jpg'),
PosixPath('10_whole_foods/train/honey/ef38a030-f57e-4516-b35c-3deae92d1a9a.jpg'),
PosixPath('10_whole_foods/train/honey/8ce73199-ac6f-4c15-b381-5e8c3a548784.jpg'),
PosixPath('10_whole_foods/train/honey/01f19ce0-e778-4cd8-98f4-0d8c45661255.jpg'),
PosixPath('10_whole_foods/train/honey/20e5f929-20b8-458f-bbe1-b5e0caceb0e3.jpg'),
PosixPath('10_whole_foods/train/honey/5560bc17-f555-47a4-83de-ab7d64b8410e.jpg'),
PosixPath('10_whole_foods/train/honey/0fd0e739-853f-4c95-8fd7-161a2e645c3e.jpg'),
PosixPath('10_whole_foods/train/honey/e2735669-c3d5-42c5-a88e-a7504c4eb1cb.jpg'),
PosixPath('10_whole_foods/train/honey/09afae5c-93e8-4235-bc01-7012f2a8f16e.jpg'),
PosixPath('10_whole_foods/train/honey/1b3d16a7-221f-472c-a2ea-962d22f991f3.jpg'),
PosixPath('10_whole_foods/train/honey/4f8a80eb-aa8d-46cb-9d73-fca3837d62e6.jpg'),
PosixPath('10_whole_foods/train/honey/5889d513-7ff0-414a-80cd-48d53b909382.jpg'),
PosixPath('10_whole_foods/train/honey/089d3b07-18ac-4946-b9c7-4ba29be60e21.jpg'),
PosixPath('10_whole_foods/train/honey/1561d83e-28f1-4282-ab03-a4961ee28c25.jpg'),
PosixPath('10_whole_foods/train/honey/53adc373-96ed-4391-a812-c6ac75ea305a.jpg'),
PosixPath('10_whole_foods/train/honey/0dcd2f3b-08c8-41fa-80dc-08487e5c9c47.jpg'),
PosixPath('10_whole_foods/train/honey/215f629b-4352-4ff0-ab01-9be5fb4ddec2.jpg'),
PosixPath('10_whole_foods/train/honey/4e964d1a-a1e7-4120-9879-ee6210cec7dc.jpg'),
PosixPath('10_whole_foods/train/honey/7482bdb5-f465-4a46-84ba-a9c4ed544f1d.jpg'),
PosixPath('10_whole_foods/train/honey/3b6f5af6-03bc-4446-bb15-052dd8bbea40.jpg'),
PosixPath('10_whole_foods/train/honey/3d2a49b6-e5d3-443f-81c7-92ba3bfbae27.jpg'),
PosixPath('10_whole_foods/train/honey/5ca8bc28-2519-42ed-a69c-8e6c24bbe234.jpg'),
PosixPath('10_whole_foods/train/honey/08438d0b-e3c1-4878-a625-8dd2653eb03e.jpg'),
PosixPath('10_whole_foods/train/honey/9f0d9160-f8ae-453e-b20b-1c0b0fc94d0c.jpg'),
PosixPath('10_whole_foods/train/honey/9c2d32fc-6f6a-4d00-a809-8b54642bf8ff.jpg'),
PosixPath('10_whole_foods/train/honey/c743d35c-9a10-4e31-8ae4-4eb2e52d45d6.jpg'),
PosixPath('10_whole_foods/train/honey/d7245792-2c42-4894-892a-f8fda70266f8.jpg'),
PosixPath('10_whole_foods/train/honey/ba568e8f-4f41-48a1-8e30-22d73504360b.jpg'),
PosixPath('10_whole_foods/train/honey/d103202d-c5d1-48b3-8cd3-c06e5e3eef79.jpg'),
PosixPath('10_whole_foods/train/honey/e0dfaed1-eef0-4e20-bb98-8df9da5457da.jpg'),
PosixPath('10_whole_foods/train/honey/2dd79bcc-fd06-4717-bf44-537672056960.jpg'),
PosixPath('10_whole_foods/train/honey/08d7b020-eb82-42c0-ae8c-1b5bdc905cfa.jpg'),
PosixPath('10_whole_foods/train/honey/84f4c1b7-44c4-4186-bb77-661ff2e19eae.jpg'),
PosixPath('10_whole_foods/train/honey/00c42578-b780-460a-8c8d-d9928882b817.jpg'),
PosixPath('10_whole_foods/train/honey/5ef45411-a840-4090-a6d2-c3e37d1d6e0d.jpg'),
PosixPath('10_whole_foods/train/honey/e5b4fab0-9b9f-4789-89a0-1ce8b765d6f6.jpg'),
PosixPath('10_whole_foods/train/honey/267bcde5-5ca0-4ea3-938b-85af9d2840ff.jpg'),
PosixPath('10_whole_foods/train/honey/8575e016-54f1-4d70-861d-88237ba6126e.jpg'),
PosixPath('10_whole_foods/train/honey/01d95dd2-d581-42c4-aada-87a312f65f48.jpg'),
PosixPath('10_whole_foods/train/honey/470d16cb-30b1-4eb5-9eb1-31b0248acbe1.jpg'),
PosixPath('10_whole_foods/train/honey/e102b494-075e-4104-8cb1-ec166b7315fb.jpg'),
PosixPath('10_whole_foods/train/honey/7878974b-300a-4a5a-89d4-07b903eb86d8.jpg'),
PosixPath('10_whole_foods/train/honey/d0b0a103-8c1f-468c-8b4e-3cd2ecff6d4a.jpg'),
PosixPath('10_whole_foods/train/honey/a4a02c43-6e1e-4da2-be56-d0c5be9d844e.jpg'),
PosixPath('10_whole_foods/train/honey/ff7291ce-b55b-4aa7-a2ab-46810a1b9efe.jpg'),
PosixPath('10_whole_foods/train/honey/fddb8460-1d6e-4c89-9c9d-d1cf76aeaf54.jpg'),
PosixPath('10_whole_foods/train/honey/4e125b97-27b1-43aa-a2e4-cc05429dc77e.jpg'),
PosixPath('10_whole_foods/train/honey/90eff5a4-96df-4afe-9e5c-2a7cc7c9d17f.jpg'),
PosixPath('10_whole_foods/train/honey/d4e17c09-7abb-46f1-80a0-f89f5ddc6af7.jpg'),
PosixPath('10_whole_foods/train/honey/8de82a76-aa2f-43fd-86f6-5f8cc412808e.jpg'),
PosixPath('10_whole_foods/train/honey/90b7735f-097a-4966-b8fb-c51a3519d133.jpg'),
PosixPath('10_whole_foods/train/honey/048fea17-bdcb-43ff-924d-a01f9d481b94.jpg'),
PosixPath('10_whole_foods/train/honey/6910a146-51a3-4523-bfd0-0d6c5522e65c.jpg'),
PosixPath('10_whole_foods/train/honey/625ea866-2fd2-413e-957f-53c19e73af7c.jpg'),
PosixPath('10_whole_foods/train/honey/8da2b2ec-09c4-43b3-80a0-ac2e2149b70b.jpg'),
PosixPath('10_whole_foods/train/honey/79bb88fc-a3fe-49a8-8962-d88feee44d52.jpg'),
PosixPath('10_whole_foods/train/honey/7f38cc43-0c24-48f9-bf55-d9358776c4ca.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d2c3888f-c70a-4b3c-bd6f-b82e99623ec7.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/9c631c94-9db4-4f65-9101-7c5d78626e34.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/da360f91-7088-4677-8eef-425e2c5638dc.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/555be0a3-0469-479b-abe0-4d19d92386ad.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/051190d1-ba9e-499f-8932-6113f7c9056b.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/0a40f11d-6823-4f37-9d01-8305fc62ef77.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/cfb99716-151c-42b3-a2dc-161c04a4d2cd.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/50fe1164-b66f-46dc-ac25-47b9ce342a21.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/b97f58bb-005c-4b76-8cec-8d5c795995ac.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/4da08242-c139-4a90-8a36-8a4860442e9c.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/3a622258-3927-4264-bd6e-4fd95f91039d.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/10f0f5ae-570a-4a5e-8452-edc44877b3b0.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/5e822910-6814-4404-ab16-df90694e4b4b.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/2884208c-da6c-4b12-b3e9-a145d56f628c.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/5ed33cbf-80e1-4a56-9a49-c2c8e2b9e9fb.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/1a8ff2f8-ad32-48ea-bb4f-5d9ad82c103e.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/420146f3-2741-46a9-8d8e-a91dc40477ac.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/00610bf9-410f-44e2-81c3-69033bfb2796.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/018e62c7-f37a-4997-a51e-eae89fafd291.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/74f8d39f-b08a-4e03-b418-f852a0875a06.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d5eb989c-564f-4ae3-bae6-189f0a586cd3.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/0095577a-5cdd-4a3f-a237-b2a92184f180.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/43599c16-187c-47da-bd86-70042aec5960.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/997ba060-c9ed-4bd0-a042-97fff7772876.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/366eb84e-6212-41c0-9b54-e8b2c5a81c9a.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/2f109a65-5de2-4a0a-bf3f-a81ec633fed0.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/60f4d8cc-f723-4073-835f-7dae5e2ebe16.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/1cc1b896-b54f-4582-a045-265d75487dc4.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/903d7529-f671-468a-bf4c-760b455c9ac9.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/1dfa38ce-68aa-4475-8b81-dccd29801772.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/92792817-5831-42df-992c-ce773ddfc67a.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/16559807-d6f4-4993-9779-5f970943d106.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/172f0b11-603c-4d13-abf1-c66941016104.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/7951e200-d928-4a9f-9585-1235a0b5a781.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/a61cfdd0-4870-4e10-b166-c1176601180b.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/60c96893-ccd6-4a16-9a7c-7dc4524e8b8f.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/892a32ca-6a83-4cb8-a6f4-60c5535b5ba4.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/f298b214-2c8b-4769-b4cb-f206c445b283.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/1b5fa7d3-0bb5-487f-ac8a-a5467c5379d6.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/8425c405-9111-41a9-b9b9-d859db6c7b27.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/0dadc413-9e3b-4586-83d5-4a5834b3ef0a.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/0ab5a92e-4eeb-40ca-b7a1-8492ea27f99a.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/90d8cdc9-5aad-45b7-9bd2-d1eb23565467.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d5cecbbc-5ba0-4462-b195-d8409c35a2d7.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/c161994e-543e-4f6a-bc4a-c9d1573c8a95.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/6a4f7b08-64ca-4577-9fba-2dea1eb6f5a7.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/6150b2dc-d0dd-45e4-bb93-ae3d5fc918dc.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/5682abdb-ee06-4ac8-ac16-131c3a44426f.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/585eb0b4-822f-466a-a792-943ab4034804.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/406afeff-29fb-450f-bd2b-15b7277fc9b1.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/1dc57415-26d4-441d-88b0-15848e314ce5.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/a013cc18-6f10-4a47-b474-a5e0540761bd.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/9bf5c372-2a02-4a9f-b7b4-bb426ea92dc8.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/0049d13b-50e9-4780-a47f-4d2de82035f2.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/9faa1496-fc6a-480d-9374-ea77fd9ebd38.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/ffb8ddfe-2ba7-403d-ae82-2b73f90160ce.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/be14524e-05f4-4add-81d0-37ad5b557c1a.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/84afef8c-ef4e-42f9-9058-fc8bbde82402.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/66f9730a-d620-44c9-8925-182238cb409b.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/195a9fbd-939c-4197-8d21-121193a87d03.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/a6ff49a6-ad2a-4cfc-a080-124ab350a530.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/2c2d0eac-6b08-4c72-a2e8-258b191c0252.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/b9da624a-9f5c-4bb2-baa6-521783588205.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/3b191f97-0b37-472c-88b9-9004a2247f3b.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/4e07e51a-611f-43ee-b044-c0dc385be392.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d68dc466-d233-4fd4-b658-cbac75acf023.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d6e5ad90-013c-46b2-9ccb-f33ef7b28f61.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/fcb4b348-9088-4754-8f77-a6702649fda9.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/3541f970-548f-46a7-a0f6-fb3af367bba8.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/bee4fa29-cd6d-4feb-b1c3-5cbf3557b689.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d81fc430-630f-4a3c-937d-ed8d350d00c1.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/e646e512-a93b-4c05-a75f-aab1d4b4bb3d.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/0c4afa01-91fb-43f2-be0a-b0e55c0d407a.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/cf0aba9a-0d3f-47e8-9420-78597cfd0a8d.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/6dcad646-8a5c-44fa-a5b6-d24cae2422a5.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/40d8f689-0cf8-487b-9f71-6de66001848b.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/2f321266-74ba-428c-b7fb-8779a08ff9c8.jpg'),
PosixPath('10_whole_foods/train/chicken_wings/d71ea7cb-b3a1-45db-846f-cd2553f38434.jpg')]In [4]python · cell 5
python
len(file_list) Output
818
In [17]python · cell 6
python
# Reshape images to 800x800
size = 800, 800
targ_dir = "../data/"
# Resize images
for filepath in file_list:
img = Image.open(filepath).convert("RGB")
img.thumbnail(size, Image.ANTIALIAS)
save_path = pathlib.Path(targ_dir, filepath)
print(f"Saving resized image from: {filepath} \nto: {save_path}")
os.makedirs(save_path.parent, exist_ok=True)
img.save(save_path, format="JPEG")Output
Saving resized image from: 10_whole_foods/test/carrots/7d72ffdd-c1c5-4635-89d2-34fb4e5fbf31.jpg to: data/10_whole_foods/test/carrots/7d72ffdd-c1c5-4635-89d2-34fb4e5fbf31.jpg Saving resized image from: 10_whole_foods/test/carrots/50b5b9e8-9e41-4e31-b02e-205433d8bbee.jpg to: data/10_whole_foods/test/carrots/50b5b9e8-9e41-4e31-b02e-205433d8bbee.jpg Saving resized image from: 10_whole_foods/test/carrots/19367379-ecd4-43f1-b4bf-8c6d0e42df7a.jpg to: data/10_whole_foods/test/carrots/19367379-ecd4-43f1-b4bf-8c6d0e42df7a.jpg Saving resized image from: 10_whole_foods/test/carrots/17a04fd6-b229-493c-b553-202c7fb7e990.jpg to: data/10_whole_foods/test/carrots/17a04fd6-b229-493c-b553-202c7fb7e990.jpg Saving resized image from: 10_whole_foods/test/carrots/ea8a4ff9-d176-4bfa-8e07-c2cc14707d8d.jpg to: data/10_whole_foods/test/carrots/ea8a4ff9-d176-4bfa-8e07-c2cc14707d8d.jpg Saving resized image from: 10_whole_foods/test/carrots/c22185f7-007e-42db-869f-9fcdd93b533e.jpg to: data/10_whole_foods/test/carrots/c22185f7-007e-42db-869f-9fcdd93b533e.jpg Saving resized image from: 10_whole_foods/test/carrots/f9ca45cc-c993-4213-b14d-d370320f41aa.jpg to: data/10_whole_foods/test/carrots/f9ca45cc-c993-4213-b14d-d370320f41aa.jpg Saving resized image from: 10_whole_foods/test/carrots/a549c0e5-31a8-4267-b5ff-469ec7c3f350.jpg to: data/10_whole_foods/test/carrots/a549c0e5-31a8-4267-b5ff-469ec7c3f350.jpg Saving resized image from: 10_whole_foods/test/carrots/4c82895c-6674-44f0-a5ea-9128874194ec.jpg to: data/10_whole_foods/test/carrots/4c82895c-6674-44f0-a5ea-9128874194ec.jpg Saving resized image from: 10_whole_foods/test/carrots/e35a7837-0ef6-4fa0-a56c-6d8afcd85230.jpg to: data/10_whole_foods/test/carrots/e35a7837-0ef6-4fa0-a56c-6d8afcd85230.jpg Saving resized image from: 10_whole_foods/test/carrots/d041f503-0b14-457c-9823-a01ac9a029f7.jpg to: data/10_whole_foods/test/carrots/d041f503-0b14-457c-9823-a01ac9a029f7.jpg Saving resized image from: 10_whole_foods/test/carrots/9a9f8ba7-dfed-4a62-9f9b-58d9806c26a2.jpg to: data/10_whole_foods/test/carrots/9a9f8ba7-dfed-4a62-9f9b-58d9806c26a2.jpg Saving resized image from: 10_whole_foods/test/carrots/373b2a05-3281-43d4-a6ab-f7230f4c4f38.jpg to: data/10_whole_foods/test/carrots/373b2a05-3281-43d4-a6ab-f7230f4c4f38.jpg Saving resized image from: 10_whole_foods/test/carrots/f54b730a-51f5-4281-8193-fe211604ec65.jpg to: data/10_whole_foods/test/carrots/f54b730a-51f5-4281-8193-fe211604ec65.jpg Saving resized image from: 10_whole_foods/test/carrots/7c182ab7-4f8e-4a20-9b95-d9f087b3c1db.jpg to: data/10_whole_foods/test/carrots/7c182ab7-4f8e-4a20-9b95-d9f087b3c1db.jpg Saving resized image from: 10_whole_foods/test/carrots/70571126-3501-4aff-a104-dfb13a1a2c83.jpg to: data/10_whole_foods/test/carrots/70571126-3501-4aff-a104-dfb13a1a2c83.jpg Saving resized image from: 10_whole_foods/test/carrots/c8283750-34b8-4740-b99f-e05ccf067a91.jpg to: data/10_whole_foods/test/carrots/c8283750-34b8-4740-b99f-e05ccf067a91.jpg Saving resized image from: 10_whole_foods/test/mushrooms/3df09847-72c8-4814-8f2b-a4ba6bf2a682.jpg to: data/10_whole_foods/test/mushrooms/3df09847-72c8-4814-8f2b-a4ba6bf2a682.jpg Saving resized image from: 10_whole_foods/test/mushrooms/46718310-c8a7-4477-b2e0-922b97227098.jpg to: data/10_whole_foods/test/mushrooms/46718310-c8a7-4477-b2e0-922b97227098.jpg Saving resized image from: 10_whole_foods/test/mushrooms/5d0485ef-2418-4cd0-ab73-58ce9a99da9a.jpg to: data/10_whole_foods/test/mushrooms/5d0485ef-2418-4cd0-ab73-58ce9a99da9a.jpg Saving resized image from: 10_whole_foods/test/mushrooms/c54b09d4-b372-4ca2-acde-18417f7e26d8.jpg to: data/10_whole_foods/test/mushrooms/c54b09d4-b372-4ca2-acde-18417f7e26d8.jpg Saving resized image from: 10_whole_foods/test/mushrooms/6bdfc054-2afd-4429-a03b-8c7ca43e81d7.jpg to: data/10_whole_foods/test/mushrooms/6bdfc054-2afd-4429-a03b-8c7ca43e81d7.jpg Saving resized image from: 10_whole_foods/test/mushrooms/a13f76f1-bdf1-41e8-a326-c1bec1b6aa6c.jpg to: data/10_whole_foods/test/mushrooms/a13f76f1-bdf1-41e8-a326-c1bec1b6aa6c.jpg Saving resized image from: 10_whole_foods/test/mushrooms/d34c8181-806f-43d1-8204-a8ee0e8e667c.jpg to: data/10_whole_foods/test/mushrooms/d34c8181-806f-43d1-8204-a8ee0e8e667c.jpg Saving resized image from: 10_whole_foods/test/mushrooms/50488d78-d44c-4e3c-91b0-115c164d09b4.jpg to: data/10_whole_foods/test/mushrooms/50488d78-d44c-4e3c-91b0-115c164d09b4.jpg Saving resized image from: 10_whole_foods/test/mushrooms/6db09dc0-89f0-4957-9bf6-6d2c5d2fb29e.jpg to: data/10_whole_foods/test/mushrooms/6db09dc0-89f0-4957-9bf6-6d2c5d2fb29e.jpg Saving resized image from: 10_whole_foods/test/mushrooms/301f0994-427b-43e0-9b09-b31b782bc8d2.jpg to: data/10_whole_foods/test/mushrooms/301f0994-427b-43e0-9b09-b31b782bc8d2.jpg Saving resized image from: 10_whole_foods/test/mushrooms/26cba37d-5865-4656-85b9-aec315f24af5.jpg to: data/10_whole_foods/test/mushrooms/26cba37d-5865-4656-85b9-aec315f24af5.jpg Saving resized image from: 10_whole_foods/test/apple/785976d8-1e6f-460a-9770-50d4e811d80b.jpg to: data/10_whole_foods/test/apple/785976d8-1e6f-460a-9770-50d4e811d80b.jpg Saving resized image from: 10_whole_foods/test/apple/6e8eb37d-7ba4-4842-9b04-073323132a02.jpg to: data/10_whole_foods/test/apple/6e8eb37d-7ba4-4842-9b04-073323132a02.jpg Saving resized image from: 10_whole_foods/test/apple/df258910-d582-4e68-aa42-a5168289b87a.jpg to: data/10_whole_foods/test/apple/df258910-d582-4e68-aa42-a5168289b87a.jpg Saving resized image from: 10_whole_foods/test/apple/f7adecb7-06ac-4d7b-95a6-0dfe0bfbc45d.jpg to: data/10_whole_foods/test/apple/f7adecb7-06ac-4d7b-95a6-0dfe0bfbc45d.jpg Saving resized image from: 10_whole_foods/test/apple/6495a9ce-1dfb-447f-b27c-fc50e56670fa.jpg to: data/10_whole_foods/test/apple/6495a9ce-1dfb-447f-b27c-fc50e56670fa.jpg Saving resized image from: 10_whole_foods/test/apple/9e79d618-d21b-4092-8530-8b735800ba03.jpg to: data/10_whole_foods/test/apple/9e79d618-d21b-4092-8530-8b735800ba03.jpg Saving resized image from: 10_whole_foods/test/apple/cc5698c5-69bf-4915-beaa-b9a1829ce77c.jpg to: data/10_whole_foods/test/apple/cc5698c5-69bf-4915-beaa-b9a1829ce77c.jpg Saving resized image from: 10_whole_foods/test/apple/9481309c-5ae0-4a8a-ac28-273ef0e1f4a5.jpg to: data/10_whole_foods/test/apple/9481309c-5ae0-4a8a-ac28-273ef0e1f4a5.jpg Saving resized image from: 10_whole_foods/test/apple/8d158300-6a0b-4187-9f4f-7dce0a615417.jpg to: data/10_whole_foods/test/apple/8d158300-6a0b-4187-9f4f-7dce0a615417.jpg Saving resized image from: 10_whole_foods/test/apple/8ac6f821-7411-4aeb-b128-32cb56c0dc0b.jpg to: data/10_whole_foods/test/apple/8ac6f821-7411-4aeb-b128-32cb56c0dc0b.jpg Saving resized image from: 10_whole_foods/test/apple/2dceed6f-5b7f-4033-ad4b-257218dd5252.jpg to: data/10_whole_foods/test/apple/2dceed6f-5b7f-4033-ad4b-257218dd5252.jpg Saving resized image from: 10_whole_foods/test/apple/9d3b3d87-c2ac-4b58-87b1-bff133e807c7.jpg to: data/10_whole_foods/test/apple/9d3b3d87-c2ac-4b58-87b1-bff133e807c7.jpg Saving resized image from: 10_whole_foods/test/apple/94797992-241c-4662-8bb0-8ce4ef495cfd.jpg to: data/10_whole_foods/test/apple/94797992-241c-4662-8bb0-8ce4ef495cfd.jpg Saving resized image from: 10_whole_foods/test/apple/9e174612-5ea7-4c2a-9932-0f47128a00ff.jpg to: data/10_whole_foods/test/apple/9e174612-5ea7-4c2a-9932-0f47128a00ff.jpg Saving resized image from: 10_whole_foods/test/apple/1ba1cdf1-0bb0-4d24-abba-880216564dd0.jpg to: data/10_whole_foods/test/apple/1ba1cdf1-0bb0-4d24-abba-880216564dd0.jpg Saving resized image from: 10_whole_foods/test/apple/39055078-d3f3-49e8-92a5-106a3babf657.jpg to: data/10_whole_foods/test/apple/39055078-d3f3-49e8-92a5-106a3babf657.jpg Saving resized image from: 10_whole_foods/test/apple/767a5100-6e9c-4ac5-9422-1e056514257a.jpg to: data/10_whole_foods/test/apple/767a5100-6e9c-4ac5-9422-1e056514257a.jpg Saving resized image from: 10_whole_foods/test/strawberries/4f7b16f3-d936-4164-87f7-daf18fc08c87.jpg to: data/10_whole_foods/test/strawberries/4f7b16f3-d936-4164-87f7-daf18fc08c87.jpg Saving resized image from: 10_whole_foods/test/strawberries/426be94a-b621-43fb-b001-485bb800f891.jpg to: data/10_whole_foods/test/strawberries/426be94a-b621-43fb-b001-485bb800f891.jpg Saving resized image from: 10_whole_foods/test/strawberries/24be2ef9-d2d5-46f6-9884-100974cf1ee5.jpg to: data/10_whole_foods/test/strawberries/24be2ef9-d2d5-46f6-9884-100974cf1ee5.jpg Saving resized image from: 10_whole_foods/test/strawberries/c5e318cc-23ce-42ad-a4bf-acfe6e8b91fb.jpg to: data/10_whole_foods/test/strawberries/c5e318cc-23ce-42ad-a4bf-acfe6e8b91fb.jpg Saving resized image from: 10_whole_foods/test/strawberries/3446ddae-72a8-4268-beee-018f4df5a5f2.jpg to: data/10_whole_foods/test/strawberries/3446ddae-72a8-4268-beee-018f4df5a5f2.jpg Saving resized image from: 10_whole_foods/test/strawberries/18715d64-21ca-4ba7-a66a-46b88a358c99.jpg to: data/10_whole_foods/test/strawberries/18715d64-21ca-4ba7-a66a-46b88a358c99.jpg Saving resized image from: 10_whole_foods/test/strawberries/2a46c8c5-f0b2-45a6-a9c8-ddea7e6b9cb3.jpg to: data/10_whole_foods/test/strawberries/2a46c8c5-f0b2-45a6-a9c8-ddea7e6b9cb3.jpg Saving resized image from: 10_whole_foods/test/strawberries/02c10df1-f261-41a6-ac50-a204499ea6f8.jpg to: data/10_whole_foods/test/strawberries/02c10df1-f261-41a6-ac50-a204499ea6f8.jpg Saving resized image from: 10_whole_foods/test/strawberries/6089dcdf-a246-4dea-8da6-66cd5820f362.jpg to: data/10_whole_foods/test/strawberries/6089dcdf-a246-4dea-8da6-66cd5820f362.jpg Saving resized image from: 10_whole_foods/test/strawberries/4c9d4c37-0e39-4def-bb78-1bd5f18a1f41.jpg to: data/10_whole_foods/test/strawberries/4c9d4c37-0e39-4def-bb78-1bd5f18a1f41.jpg Saving resized image from: 10_whole_foods/test/blueberries/d35ad448-a95a-4d27-aa8f-5fe1a96b4fc7.jpg to: data/10_whole_foods/test/blueberries/d35ad448-a95a-4d27-aa8f-5fe1a96b4fc7.jpg Saving resized image from: 10_whole_foods/test/blueberries/e9590c3f-c1f7-4460-b895-b558b94a8af9.jpg to: data/10_whole_foods/test/blueberries/e9590c3f-c1f7-4460-b895-b558b94a8af9.jpg Saving resized image from: 10_whole_foods/test/blueberries/84cf917d-7d98-4a0f-804c-d74bcb562915.jpg to: data/10_whole_foods/test/blueberries/84cf917d-7d98-4a0f-804c-d74bcb562915.jpg Saving resized image from: 10_whole_foods/test/blueberries/02c1a4cb-97e2-410c-8d70-6eb46ed93798.jpg to: data/10_whole_foods/test/blueberries/02c1a4cb-97e2-410c-8d70-6eb46ed93798.jpg Saving resized image from: 10_whole_foods/test/blueberries/3f70449f-24ac-4d98-b8d6-87291548da66.jpg to: data/10_whole_foods/test/blueberries/3f70449f-24ac-4d98-b8d6-87291548da66.jpg Saving resized image from: 10_whole_foods/test/blueberries/f3d12761-e267-49f1-b7f6-260d2199fba8.jpg to: data/10_whole_foods/test/blueberries/f3d12761-e267-49f1-b7f6-260d2199fba8.jpg Saving resized image from: 10_whole_foods/test/blueberries/970ee4ed-5cea-44dd-acd5-e027d8aaffef.jpg to: data/10_whole_foods/test/blueberries/970ee4ed-5cea-44dd-acd5-e027d8aaffef.jpg Saving resized image from: 10_whole_foods/test/blueberries/8ed4110f-8c64-4b61-9920-493525f9b659.jpg to: data/10_whole_foods/test/blueberries/8ed4110f-8c64-4b61-9920-493525f9b659.jpg Saving resized image from: 10_whole_foods/test/blueberries/c9e6d647-e4d9-4a4c-a80e-46b9d7beca95.jpg to: data/10_whole_foods/test/blueberries/c9e6d647-e4d9-4a4c-a80e-46b9d7beca95.jpg Saving resized image from: 10_whole_foods/test/blueberries/04f98519-9940-4b9e-b7d4-982205c3ddf3.jpg to: data/10_whole_foods/test/blueberries/04f98519-9940-4b9e-b7d4-982205c3ddf3.jpg Saving resized image from: 10_whole_foods/test/blueberries/573df8c6-9c7d-47b2-b717-05ed1072d0df.jpg to: data/10_whole_foods/test/blueberries/573df8c6-9c7d-47b2-b717-05ed1072d0df.jpg Saving resized image from: 10_whole_foods/test/blueberries/f4b319f6-b8e8-4e0f-bdc9-4f8fd4e953b8.jpg to: data/10_whole_foods/test/blueberries/f4b319f6-b8e8-4e0f-bdc9-4f8fd4e953b8.jpg Saving resized image from: 10_whole_foods/test/blueberries/5f599d31-67af-4cb5-9844-3c98776c09f1.jpg to: data/10_whole_foods/test/blueberries/5f599d31-67af-4cb5-9844-3c98776c09f1.jpg Saving resized image from: 10_whole_foods/test/blueberries/3e28919a-99c2-4660-878c-906d4e0d9a44.jpg to: data/10_whole_foods/test/blueberries/3e28919a-99c2-4660-878c-906d4e0d9a44.jpg Saving resized image from: 10_whole_foods/test/blueberries/6052eae9-32eb-41c8-8d3b-4110252b8360.jpg to: data/10_whole_foods/test/blueberries/6052eae9-32eb-41c8-8d3b-4110252b8360.jpg Saving resized image from: 10_whole_foods/test/blueberries/e6b79ca1-f0b7-42a7-a133-bd62a527aa7a.jpg to: data/10_whole_foods/test/blueberries/e6b79ca1-f0b7-42a7-a133-bd62a527aa7a.jpg Saving resized image from: 10_whole_foods/test/blueberries/c68ca706-7eec-4f9c-b962-82f24cab18df.jpg to: data/10_whole_foods/test/blueberries/c68ca706-7eec-4f9c-b962-82f24cab18df.jpg Saving resized image from: 10_whole_foods/test/blueberries/a5f49477-7928-4748-97d4-aebea2ecd21b.jpg to: data/10_whole_foods/test/blueberries/a5f49477-7928-4748-97d4-aebea2ecd21b.jpg Saving resized image from: 10_whole_foods/test/blueberries/de77c967-60bd-43c5-9e69-0ae4fee426cc.jpg to: data/10_whole_foods/test/blueberries/de77c967-60bd-43c5-9e69-0ae4fee426cc.jpg Saving resized image from: 10_whole_foods/test/banana/c0c39e49-b08d-4681-ae2f-e1c762f8e4c7.jpg to: data/10_whole_foods/test/banana/c0c39e49-b08d-4681-ae2f-e1c762f8e4c7.jpg Saving resized image from: 10_whole_foods/test/banana/97d70397-7cd9-4db4-98f5-7304562d5acc.jpg to: data/10_whole_foods/test/banana/97d70397-7cd9-4db4-98f5-7304562d5acc.jpg Saving resized image from: 10_whole_foods/test/banana/218da1be-6acc-4285-95fe-affe0b4468b1.jpg to: data/10_whole_foods/test/banana/218da1be-6acc-4285-95fe-affe0b4468b1.jpg Saving resized image from: 10_whole_foods/test/banana/10deaf70-13ee-498d-8e84-da24bc852dac.jpg to: data/10_whole_foods/test/banana/10deaf70-13ee-498d-8e84-da24bc852dac.jpg Saving resized image from: 10_whole_foods/test/banana/588b8e0c-9195-4789-bb41-2b709602cf67.jpg to: data/10_whole_foods/test/banana/588b8e0c-9195-4789-bb41-2b709602cf67.jpg Saving resized image from: 10_whole_foods/test/banana/b914653a-e72b-4341-a4d4-1ec4c170b701.jpg to: data/10_whole_foods/test/banana/b914653a-e72b-4341-a4d4-1ec4c170b701.jpg Saving resized image from: 10_whole_foods/test/banana/132e339b-0a17-4d26-bc63-21bfba9acd10.jpg to: data/10_whole_foods/test/banana/132e339b-0a17-4d26-bc63-21bfba9acd10.jpg Saving resized image from: 10_whole_foods/test/banana/03aaa2f4-d8a1-474b-9ac4-4d9f113845a9.jpg to: data/10_whole_foods/test/banana/03aaa2f4-d8a1-474b-9ac4-4d9f113845a9.jpg Saving resized image from: 10_whole_foods/test/banana/bdcade73-3338-4069-b91d-3520ee103bc3.jpg to: data/10_whole_foods/test/banana/bdcade73-3338-4069-b91d-3520ee103bc3.jpg Saving resized image from: 10_whole_foods/test/banana/1f172c71-5343-4a1f-bccb-209f72cabf10.jpg to: data/10_whole_foods/test/banana/1f172c71-5343-4a1f-bccb-209f72cabf10.jpg Saving resized image from: 10_whole_foods/test/banana/b33e31f6-0a9a-4d64-90c0-b611d98f33fb.jpg to: data/10_whole_foods/test/banana/b33e31f6-0a9a-4d64-90c0-b611d98f33fb.jpg Saving resized image from: 10_whole_foods/test/banana/0422826d-4613-46fd-a09f-4837ea175059.jpg to: data/10_whole_foods/test/banana/0422826d-4613-46fd-a09f-4837ea175059.jpg Saving resized image from: 10_whole_foods/test/banana/ecc72aa4-ddee-4420-9bf3-0710b5ccedb9.jpg to: data/10_whole_foods/test/banana/ecc72aa4-ddee-4420-9bf3-0710b5ccedb9.jpg Saving resized image from: 10_whole_foods/test/banana/da0aace0-fab5-4593-ace8-4fffc200d19a.jpg to: data/10_whole_foods/test/banana/da0aace0-fab5-4593-ace8-4fffc200d19a.jpg Saving resized image from: 10_whole_foods/test/banana/0cebbe7b-1a54-45d8-b781-cb84bf844a36.jpg to: data/10_whole_foods/test/banana/0cebbe7b-1a54-45d8-b781-cb84bf844a36.jpg Saving resized image from: 10_whole_foods/test/banana/fc75dafb-d295-41b3-bef8-416671606936.jpg to: data/10_whole_foods/test/banana/fc75dafb-d295-41b3-bef8-416671606936.jpg Saving resized image from: 10_whole_foods/test/banana/864907b8-2e48-4bc3-9082-94ae34fdc870.jpg to: data/10_whole_foods/test/banana/864907b8-2e48-4bc3-9082-94ae34fdc870.jpg Saving resized image from: 10_whole_foods/test/banana/4b10e023-62ce-404f-b97e-f7d68815ec3d.jpg to: data/10_whole_foods/test/banana/4b10e023-62ce-404f-b97e-f7d68815ec3d.jpg Saving resized image from: 10_whole_foods/test/banana/b8dc95e8-cafb-4352-881a-77cff58ef0c1.jpg to: data/10_whole_foods/test/banana/b8dc95e8-cafb-4352-881a-77cff58ef0c1.jpg Saving resized image from: 10_whole_foods/test/banana/a9046e2b-e176-4dfd-bcfc-22103c0c868e.jpg to: data/10_whole_foods/test/banana/a9046e2b-e176-4dfd-bcfc-22103c0c868e.jpg Saving resized image from: 10_whole_foods/test/beef/40e9f146-86ad-4e21-bd43-127d146adf1a.jpg to: data/10_whole_foods/test/beef/40e9f146-86ad-4e21-bd43-127d146adf1a.jpg Saving resized image from: 10_whole_foods/test/beef/8fc88bc6-d4e2-4b66-bf53-2c3066472eac.jpg to: data/10_whole_foods/test/beef/8fc88bc6-d4e2-4b66-bf53-2c3066472eac.jpg Saving resized image from: 10_whole_foods/test/beef/8ac4951e-339e-4eb6-bf59-3cb646eae467.jpg to: data/10_whole_foods/test/beef/8ac4951e-339e-4eb6-bf59-3cb646eae467.jpg Saving resized image from: 10_whole_foods/test/beef/31f26dce-0f9d-4df5-a430-7badbc1bc805.jpg to: data/10_whole_foods/test/beef/31f26dce-0f9d-4df5-a430-7badbc1bc805.jpg Saving resized image from: 10_whole_foods/test/beef/065b8b18-30af-47d2-9112-568edf80040b.jpg to: data/10_whole_foods/test/beef/065b8b18-30af-47d2-9112-568edf80040b.jpg Saving resized image from: 10_whole_foods/test/beef/349b5922-8ad0-4a14-befb-647fa467f833.jpg to: data/10_whole_foods/test/beef/349b5922-8ad0-4a14-befb-647fa467f833.jpg Saving resized image from: 10_whole_foods/test/beef/718df741-f22e-4de6-a411-50050efbbcb6.jpg to: data/10_whole_foods/test/beef/718df741-f22e-4de6-a411-50050efbbcb6.jpg Saving resized image from: 10_whole_foods/test/beef/74272871-b38e-4c9b-88d2-e6c84941b627.jpg to: data/10_whole_foods/test/beef/74272871-b38e-4c9b-88d2-e6c84941b627.jpg Saving resized image from: 10_whole_foods/test/beef/a558ae64-388f-4017-965e-11ad3d260829.jpg to: data/10_whole_foods/test/beef/a558ae64-388f-4017-965e-11ad3d260829.jpg Saving resized image from: 10_whole_foods/test/beef/760835d5-43b4-49e5-80b0-242bb68cf6d8.jpg to: data/10_whole_foods/test/beef/760835d5-43b4-49e5-80b0-242bb68cf6d8.jpg Saving resized image from: 10_whole_foods/test/beef/5b7d3396-ea8a-43b7-8722-b8b5f14f3c55.jpg to: data/10_whole_foods/test/beef/5b7d3396-ea8a-43b7-8722-b8b5f14f3c55.jpg Saving resized image from: 10_whole_foods/test/beef/1eb4cdd2-2fc2-455f-a1dc-d119f8507624.jpg to: data/10_whole_foods/test/beef/1eb4cdd2-2fc2-455f-a1dc-d119f8507624.jpg Saving resized image from: 10_whole_foods/test/beef/51e0a203-b5f9-4e7e-8182-047b3c5e0582.jpg to: data/10_whole_foods/test/beef/51e0a203-b5f9-4e7e-8182-047b3c5e0582.jpg Saving resized image from: 10_whole_foods/test/beef/3822c51e-a0fe-44a8-be85-1994277b8c00.jpg to: data/10_whole_foods/test/beef/3822c51e-a0fe-44a8-be85-1994277b8c00.jpg Saving resized image from: 10_whole_foods/test/beef/6c8d472b-c4ef-4b6a-9154-6a82613fe103.jpg to: data/10_whole_foods/test/beef/6c8d472b-c4ef-4b6a-9154-6a82613fe103.jpg Saving resized image from: 10_whole_foods/test/beef/45e95f35-2581-4712-a76e-e31d54c29b53.jpg to: data/10_whole_foods/test/beef/45e95f35-2581-4712-a76e-e31d54c29b53.jpg Saving resized image from: 10_whole_foods/test/beef/a6948608-6905-430c-88ae-05f6d47997cf.jpg to: data/10_whole_foods/test/beef/a6948608-6905-430c-88ae-05f6d47997cf.jpg Saving resized image from: 10_whole_foods/test/beef/75869cbb-2521-494a-aae6-8386f5d0962d.jpg to: data/10_whole_foods/test/beef/75869cbb-2521-494a-aae6-8386f5d0962d.jpg Saving resized image from: 10_whole_foods/test/beef/6181460d-3e46-48be-9836-884cca7af601.jpg to: data/10_whole_foods/test/beef/6181460d-3e46-48be-9836-884cca7af601.jpg Saving resized image from: 10_whole_foods/test/beef/b0795b64-9e1e-450b-aead-81b33aa6253d.jpg to: data/10_whole_foods/test/beef/b0795b64-9e1e-450b-aead-81b33aa6253d.jpg Saving resized image from: 10_whole_foods/test/beef/e9c0f960-4d18-4971-b58b-4af83104622d.jpg to: data/10_whole_foods/test/beef/e9c0f960-4d18-4971-b58b-4af83104622d.jpg Saving resized image from: 10_whole_foods/test/egg/88c524f1-8773-46bc-ab22-cb357f33ea83.jpg to: data/10_whole_foods/test/egg/88c524f1-8773-46bc-ab22-cb357f33ea83.jpg Saving resized image from: 10_whole_foods/test/egg/d872e574-883c-4eed-ae86-0cc50086c7c9.jpg to: data/10_whole_foods/test/egg/d872e574-883c-4eed-ae86-0cc50086c7c9.jpg Saving resized image from: 10_whole_foods/test/egg/4474b349-0fc6-41c1-b8b4-e2e41e0fc04e.jpg to: data/10_whole_foods/test/egg/4474b349-0fc6-41c1-b8b4-e2e41e0fc04e.jpg Saving resized image from: 10_whole_foods/test/egg/466eb7ff-dae1-4170-ac70-ad4011c98ba9.jpg to: data/10_whole_foods/test/egg/466eb7ff-dae1-4170-ac70-ad4011c98ba9.jpg Saving resized image from: 10_whole_foods/test/egg/9a457892-5da2-42ad-8262-e6f8f26ce696.jpg to: data/10_whole_foods/test/egg/9a457892-5da2-42ad-8262-e6f8f26ce696.jpg Saving resized image from: 10_whole_foods/test/egg/caff6107-27a0-4814-8f8c-bac5017d971b.jpg to: data/10_whole_foods/test/egg/caff6107-27a0-4814-8f8c-bac5017d971b.jpg Saving resized image from: 10_whole_foods/test/egg/9aa40bae-adee-4f9c-9e6a-63a8de3953ea.jpg to: data/10_whole_foods/test/egg/9aa40bae-adee-4f9c-9e6a-63a8de3953ea.jpg Saving resized image from: 10_whole_foods/test/egg/2c94e802-195f-47f2-997c-860e97721bf2.jpg to: data/10_whole_foods/test/egg/2c94e802-195f-47f2-997c-860e97721bf2.jpg Saving resized image from: 10_whole_foods/test/egg/e33f025a-e85d-4151-90c8-3bcc1dcf4ce8.jpg to: data/10_whole_foods/test/egg/e33f025a-e85d-4151-90c8-3bcc1dcf4ce8.jpg Saving resized image from: 10_whole_foods/test/egg/4048dfda-e49f-48ea-8bb7-8cd20b6da825.jpg to: data/10_whole_foods/test/egg/4048dfda-e49f-48ea-8bb7-8cd20b6da825.jpg Saving resized image from: 10_whole_foods/test/egg/5c49c661-c34a-4af6-b168-ecd2409af889.jpg to: data/10_whole_foods/test/egg/5c49c661-c34a-4af6-b168-ecd2409af889.jpg Saving resized image from: 10_whole_foods/test/egg/a66d327a-c1a2-4d64-be05-c12228af5cd0.jpg to: data/10_whole_foods/test/egg/a66d327a-c1a2-4d64-be05-c12228af5cd0.jpg Saving resized image from: 10_whole_foods/test/egg/c57f0377-c5e9-4a8d-ba24-55146286879c.jpg to: data/10_whole_foods/test/egg/c57f0377-c5e9-4a8d-ba24-55146286879c.jpg Saving resized image from: 10_whole_foods/test/egg/854efa1d-8f7a-4116-bd2e-d7e904acc3c8.jpg to: data/10_whole_foods/test/egg/854efa1d-8f7a-4116-bd2e-d7e904acc3c8.jpg Saving resized image from: 10_whole_foods/test/egg/ebfbc4ba-2a6e-4a83-9926-dd175a6c75fb.jpg to: data/10_whole_foods/test/egg/ebfbc4ba-2a6e-4a83-9926-dd175a6c75fb.jpg Saving resized image from: 10_whole_foods/test/honey/88fb8f81-b354-44b3-9c6c-b41c78920ccd.jpg to: data/10_whole_foods/test/honey/88fb8f81-b354-44b3-9c6c-b41c78920ccd.jpg Saving resized image from: 10_whole_foods/test/honey/bcb8300d-de3c-4835-925c-8c1f59489c43.jpg to: data/10_whole_foods/test/honey/bcb8300d-de3c-4835-925c-8c1f59489c43.jpg Saving resized image from: 10_whole_foods/test/honey/18e87ac8-97eb-4db0-9a14-0a4b76822239.jpg to: data/10_whole_foods/test/honey/18e87ac8-97eb-4db0-9a14-0a4b76822239.jpg Saving resized image from: 10_whole_foods/test/honey/33fc615c-2970-40f1-90c8-29e228f35645.jpg to: data/10_whole_foods/test/honey/33fc615c-2970-40f1-90c8-29e228f35645.jpg Saving resized image from: 10_whole_foods/test/honey/15f10f21-1437-4fa9-b8d4-c0da42ed42cf.jpg to: data/10_whole_foods/test/honey/15f10f21-1437-4fa9-b8d4-c0da42ed42cf.jpg Saving resized image from: 10_whole_foods/test/honey/e3f57355-42f3-4884-bcc4-7ca426c6afac.jpg to: data/10_whole_foods/test/honey/e3f57355-42f3-4884-bcc4-7ca426c6afac.jpg Saving resized image from: 10_whole_foods/test/honey/7f8a31d5-40f5-46a6-b565-e4a81c7f9583.jpg to: data/10_whole_foods/test/honey/7f8a31d5-40f5-46a6-b565-e4a81c7f9583.jpg Saving resized image from: 10_whole_foods/test/honey/dc37b3a3-3150-4d18-aa30-66ac65fe198b.jpg to: data/10_whole_foods/test/honey/dc37b3a3-3150-4d18-aa30-66ac65fe198b.jpg Saving resized image from: 10_whole_foods/test/honey/33840370-550e-47f1-acb6-0ea3d5d88fbe.jpg to: data/10_whole_foods/test/honey/33840370-550e-47f1-acb6-0ea3d5d88fbe.jpg Saving resized image from: 10_whole_foods/test/honey/83b04727-a04a-4956-82be-a05974d5b660.jpg to: data/10_whole_foods/test/honey/83b04727-a04a-4956-82be-a05974d5b660.jpg Saving resized image from: 10_whole_foods/test/honey/2bded0ea-d234-4527-bd12-bda19bbbc6e0.jpg to: data/10_whole_foods/test/honey/2bded0ea-d234-4527-bd12-bda19bbbc6e0.jpg Saving resized image from: 10_whole_foods/test/honey/34034eb3-a0cf-4307-aef3-e7ff012602ab.jpg to: data/10_whole_foods/test/honey/34034eb3-a0cf-4307-aef3-e7ff012602ab.jpg Saving resized image from: 10_whole_foods/test/honey/2c23e06f-c8ec-459d-86f9-55c0a0d1bd8b.jpg to: data/10_whole_foods/test/honey/2c23e06f-c8ec-459d-86f9-55c0a0d1bd8b.jpg Saving resized image from: 10_whole_foods/test/honey/d774b271-e511-4105-b1d1-144dadaa9ae4.jpg to: data/10_whole_foods/test/honey/d774b271-e511-4105-b1d1-144dadaa9ae4.jpg Saving resized image from: 10_whole_foods/test/honey/d86d17b8-6f9a-4f0a-94d8-118dcd2bbbaf.jpg to: data/10_whole_foods/test/honey/d86d17b8-6f9a-4f0a-94d8-118dcd2bbbaf.jpg Saving resized image from: 10_whole_foods/test/honey/ead191dd-c069-4e7f-8168-637a4434fcb5.jpg to: data/10_whole_foods/test/honey/ead191dd-c069-4e7f-8168-637a4434fcb5.jpg Saving resized image from: 10_whole_foods/test/honey/8ad32c62-bf32-443b-8c4e-ca7a222dda5d.jpg to: data/10_whole_foods/test/honey/8ad32c62-bf32-443b-8c4e-ca7a222dda5d.jpg Saving resized image from: 10_whole_foods/test/honey/08b67fac-f62c-44e0-a6b8-8e7719e740b3.jpg to: data/10_whole_foods/test/honey/08b67fac-f62c-44e0-a6b8-8e7719e740b3.jpg Saving resized image from: 10_whole_foods/test/honey/1c1bb7e6-a862-4741-9997-81d30f141b77.jpg to: data/10_whole_foods/test/honey/1c1bb7e6-a862-4741-9997-81d30f141b77.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/3f0844f0-83c6-4b41-8fb3-b30d5e9a1cc3.jpg to: data/10_whole_foods/test/chicken_wings/3f0844f0-83c6-4b41-8fb3-b30d5e9a1cc3.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/d2634871-6341-4213-9226-0ee47172e497.jpg to: data/10_whole_foods/test/chicken_wings/d2634871-6341-4213-9226-0ee47172e497.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/540b2069-0bbe-4360-b199-d2ee120e2f9b.jpg to: data/10_whole_foods/test/chicken_wings/540b2069-0bbe-4360-b199-d2ee120e2f9b.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/a042e2c8-320b-4e93-a4d0-67fa02ea30d9.jpg to: data/10_whole_foods/test/chicken_wings/a042e2c8-320b-4e93-a4d0-67fa02ea30d9.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/67632dd3-85c6-4a40-859e-256906728a81.jpg to: data/10_whole_foods/test/chicken_wings/67632dd3-85c6-4a40-859e-256906728a81.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/ac075575-083a-40d0-881d-e0fd0b73a4bc.jpg to: data/10_whole_foods/test/chicken_wings/ac075575-083a-40d0-881d-e0fd0b73a4bc.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/4ff15e99-6497-408c-8644-f564a12c3d01.jpg to: data/10_whole_foods/test/chicken_wings/4ff15e99-6497-408c-8644-f564a12c3d01.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/783ce836-425b-4c3b-9ade-d857bc35abf1.jpg to: data/10_whole_foods/test/chicken_wings/783ce836-425b-4c3b-9ade-d857bc35abf1.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/b227edab-4e3a-457a-931d-658887a7ec04.jpg to: data/10_whole_foods/test/chicken_wings/b227edab-4e3a-457a-931d-658887a7ec04.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/4854163b-ab7b-457b-b608-599c795c2919.jpg to: data/10_whole_foods/test/chicken_wings/4854163b-ab7b-457b-b608-599c795c2919.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/44711bc5-0c1d-49dd-86fb-ca17535c4cd3.jpg to: data/10_whole_foods/test/chicken_wings/44711bc5-0c1d-49dd-86fb-ca17535c4cd3.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/c58c1a7a-fb78-45f1-a5db-c27577b5274d.jpg to: data/10_whole_foods/test/chicken_wings/c58c1a7a-fb78-45f1-a5db-c27577b5274d.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/c80f6ed8-7891-4e77-8bb2-fda8ca55f651.jpg to: data/10_whole_foods/test/chicken_wings/c80f6ed8-7891-4e77-8bb2-fda8ca55f651.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/9bebb0db-9354-4c29-96d3-77e54161501c.jpg to: data/10_whole_foods/test/chicken_wings/9bebb0db-9354-4c29-96d3-77e54161501c.jpg Saving resized image from: 10_whole_foods/test/chicken_wings/e5ffefd3-cc2f-47bf-abea-e9000ce9af30.jpg to: data/10_whole_foods/test/chicken_wings/e5ffefd3-cc2f-47bf-abea-e9000ce9af30.jpg Saving resized image from: 10_whole_foods/train/carrots/0b4d1e07-72b3-4147-a384-cb1a63608c67.jpg to: data/10_whole_foods/train/carrots/0b4d1e07-72b3-4147-a384-cb1a63608c67.jpg Saving resized image from: 10_whole_foods/train/carrots/b93633fc-d534-4d48-b0db-a63fda251c37.jpg to: data/10_whole_foods/train/carrots/b93633fc-d534-4d48-b0db-a63fda251c37.jpg Saving resized image from: 10_whole_foods/train/carrots/d92fe934-c76d-4c7b-b9de-b12b38c2a92b.jpg to: data/10_whole_foods/train/carrots/d92fe934-c76d-4c7b-b9de-b12b38c2a92b.jpg Saving resized image from: 10_whole_foods/train/carrots/8385fdb4-009b-40b4-b438-a6b26073d0ed.jpg to: data/10_whole_foods/train/carrots/8385fdb4-009b-40b4-b438-a6b26073d0ed.jpg Saving resized image from: 10_whole_foods/train/carrots/243992ec-683e-468c-a1f8-e3ea911457cd.jpg to: data/10_whole_foods/train/carrots/243992ec-683e-468c-a1f8-e3ea911457cd.jpg Saving resized image from: 10_whole_foods/train/carrots/e1735767-0e26-4f2c-a799-0f710d40325a.jpg to: data/10_whole_foods/train/carrots/e1735767-0e26-4f2c-a799-0f710d40325a.jpg Saving resized image from: 10_whole_foods/train/carrots/ceafd3ba-4fde-4523-8445-cfe5f7e8ee99.jpg to: data/10_whole_foods/train/carrots/ceafd3ba-4fde-4523-8445-cfe5f7e8ee99.jpg Saving resized image from: 10_whole_foods/train/carrots/65f5acc8-e10c-4878-82db-6bafd3daa56d.jpg to: data/10_whole_foods/train/carrots/65f5acc8-e10c-4878-82db-6bafd3daa56d.jpg Saving resized image from: 10_whole_foods/train/carrots/a5f759a2-ca8c-4845-a49a-27bd1834f574.jpg to: data/10_whole_foods/train/carrots/a5f759a2-ca8c-4845-a49a-27bd1834f574.jpg Saving resized image from: 10_whole_foods/train/carrots/abce1ed2-e33c-4da2-9253-0cedc7c1f1da.jpg to: data/10_whole_foods/train/carrots/abce1ed2-e33c-4da2-9253-0cedc7c1f1da.jpg Saving resized image from: 10_whole_foods/train/carrots/3177e6dc-46b4-47e2-8233-c89560b2887f.jpg to: data/10_whole_foods/train/carrots/3177e6dc-46b4-47e2-8233-c89560b2887f.jpg Saving resized image from: 10_whole_foods/train/carrots/b1fb5ca2-6a1c-49dc-bf93-93d36c974fed.jpg to: data/10_whole_foods/train/carrots/b1fb5ca2-6a1c-49dc-bf93-93d36c974fed.jpg Saving resized image from: 10_whole_foods/train/carrots/5d7f0398-a383-4fdd-a80f-b2eaedbf2a1e.jpg to: data/10_whole_foods/train/carrots/5d7f0398-a383-4fdd-a80f-b2eaedbf2a1e.jpg Saving resized image from: 10_whole_foods/train/carrots/2f953461-0658-41b4-89fa-2b055c3fc6e4.jpg to: data/10_whole_foods/train/carrots/2f953461-0658-41b4-89fa-2b055c3fc6e4.jpg Saving resized image from: 10_whole_foods/train/carrots/04d7f11b-6374-426c-a7dc-2f9a4a22447c.jpg to: data/10_whole_foods/train/carrots/04d7f11b-6374-426c-a7dc-2f9a4a22447c.jpg Saving resized image from: 10_whole_foods/train/carrots/33ef313f-8f33-46e7-a7f6-734e3b71ede0.jpg to: data/10_whole_foods/train/carrots/33ef313f-8f33-46e7-a7f6-734e3b71ede0.jpg Saving resized image from: 10_whole_foods/train/carrots/6838798d-62fc-48e1-a39e-588d5b191540.jpg to: data/10_whole_foods/train/carrots/6838798d-62fc-48e1-a39e-588d5b191540.jpg Saving resized image from: 10_whole_foods/train/carrots/8d484eef-f335-4821-b60f-cea3245afeda.jpg to: data/10_whole_foods/train/carrots/8d484eef-f335-4821-b60f-cea3245afeda.jpg Saving resized image from: 10_whole_foods/train/carrots/ae9f3bbf-9cd3-4bf0-8456-cf2d60dba175.jpg to: data/10_whole_foods/train/carrots/ae9f3bbf-9cd3-4bf0-8456-cf2d60dba175.jpg Saving resized image from: 10_whole_foods/train/carrots/800c936d-0a5e-40ed-938f-1a2811e2c49e.jpg to: data/10_whole_foods/train/carrots/800c936d-0a5e-40ed-938f-1a2811e2c49e.jpg Saving resized image from: 10_whole_foods/train/carrots/d1218236-93a9-490b-bae2-b792ed8ed54d.jpg to: data/10_whole_foods/train/carrots/d1218236-93a9-490b-bae2-b792ed8ed54d.jpg Saving resized image from: 10_whole_foods/train/carrots/08455dab-7c38-4c43-b338-a9e2b35a21bd.jpg to: data/10_whole_foods/train/carrots/08455dab-7c38-4c43-b338-a9e2b35a21bd.jpg Saving resized image from: 10_whole_foods/train/carrots/ebae6966-4e0f-421d-b3c8-efc31dee9fee.jpg to: data/10_whole_foods/train/carrots/ebae6966-4e0f-421d-b3c8-efc31dee9fee.jpg Saving resized image from: 10_whole_foods/train/carrots/5b4223b8-ed84-4436-840b-b8cd6183ed15.jpg to: data/10_whole_foods/train/carrots/5b4223b8-ed84-4436-840b-b8cd6183ed15.jpg Saving resized image from: 10_whole_foods/train/carrots/1a3187ba-c708-4e6a-8681-3ae164618445.jpg to: data/10_whole_foods/train/carrots/1a3187ba-c708-4e6a-8681-3ae164618445.jpg Saving resized image from: 10_whole_foods/train/carrots/59b5d93c-04b7-4285-b87f-adef598b12bf.jpg to: data/10_whole_foods/train/carrots/59b5d93c-04b7-4285-b87f-adef598b12bf.jpg Saving resized image from: 10_whole_foods/train/carrots/6296be86-b90c-4165-b823-25125a7eaee2.jpg to: data/10_whole_foods/train/carrots/6296be86-b90c-4165-b823-25125a7eaee2.jpg Saving resized image from: 10_whole_foods/train/carrots/58c34b81-eb4b-4044-9977-ca16d438dd84.jpg to: data/10_whole_foods/train/carrots/58c34b81-eb4b-4044-9977-ca16d438dd84.jpg Saving resized image from: 10_whole_foods/train/carrots/ffbb26ad-766b-4286-9da8-411bc44bf68e.jpg to: data/10_whole_foods/train/carrots/ffbb26ad-766b-4286-9da8-411bc44bf68e.jpg Saving resized image from: 10_whole_foods/train/carrots/741621a7-6340-46fa-882f-67c30ac02603.jpg to: data/10_whole_foods/train/carrots/741621a7-6340-46fa-882f-67c30ac02603.jpg Saving resized image from: 10_whole_foods/train/carrots/d89203b4-1450-4463-8a52-6518aaab105b.jpg to: data/10_whole_foods/train/carrots/d89203b4-1450-4463-8a52-6518aaab105b.jpg Saving resized image from: 10_whole_foods/train/carrots/b1ad99e0-28e0-43e9-9192-2ed10ce33ea8.jpg to: data/10_whole_foods/train/carrots/b1ad99e0-28e0-43e9-9192-2ed10ce33ea8.jpg Saving resized image from: 10_whole_foods/train/carrots/b42dde55-9300-4bda-a3c5-90370cd8c557.jpg to: data/10_whole_foods/train/carrots/b42dde55-9300-4bda-a3c5-90370cd8c557.jpg Saving resized image from: 10_whole_foods/train/carrots/669ce445-78b6-421f-9b99-66d45ab119b3.jpg to: data/10_whole_foods/train/carrots/669ce445-78b6-421f-9b99-66d45ab119b3.jpg Saving resized image from: 10_whole_foods/train/carrots/648f2d23-adfb-4fec-a70c-87cf2f67b0b5.jpg to: data/10_whole_foods/train/carrots/648f2d23-adfb-4fec-a70c-87cf2f67b0b5.jpg Saving resized image from: 10_whole_foods/train/carrots/e9a4b3f2-a9b9-4c21-9cb0-3530792a3161.jpg to: data/10_whole_foods/train/carrots/e9a4b3f2-a9b9-4c21-9cb0-3530792a3161.jpg Saving resized image from: 10_whole_foods/train/carrots/85273c57-68aa-4588-84eb-0537e2987fd7.jpg to: data/10_whole_foods/train/carrots/85273c57-68aa-4588-84eb-0537e2987fd7.jpg Saving resized image from: 10_whole_foods/train/carrots/1ce47ae5-2ee7-4dc4-b639-4aca9ee6fae4.jpg to: data/10_whole_foods/train/carrots/1ce47ae5-2ee7-4dc4-b639-4aca9ee6fae4.jpg Saving resized image from: 10_whole_foods/train/carrots/80a7386c-fd93-40ed-b7de-3f60dc9f552f.jpg to: data/10_whole_foods/train/carrots/80a7386c-fd93-40ed-b7de-3f60dc9f552f.jpg Saving resized image from: 10_whole_foods/train/carrots/efa7c11d-855c-48e4-aba5-081c97956f48.jpg to: data/10_whole_foods/train/carrots/efa7c11d-855c-48e4-aba5-081c97956f48.jpg Saving resized image from: 10_whole_foods/train/carrots/65bbb37e-5e7f-464f-8144-6fcdb05a8cd9.jpg to: data/10_whole_foods/train/carrots/65bbb37e-5e7f-464f-8144-6fcdb05a8cd9.jpg Saving resized image from: 10_whole_foods/train/carrots/f9f67c61-6e29-4d06-a88a-0fc70464d70e.jpg to: data/10_whole_foods/train/carrots/f9f67c61-6e29-4d06-a88a-0fc70464d70e.jpg Saving resized image from: 10_whole_foods/train/carrots/da0e5c00-890b-4712-a08b-639f9560245e.jpg to: data/10_whole_foods/train/carrots/da0e5c00-890b-4712-a08b-639f9560245e.jpg Saving resized image from: 10_whole_foods/train/carrots/a065670c-406a-4b5a-8bbe-5fffb16b1fdb.jpg to: data/10_whole_foods/train/carrots/a065670c-406a-4b5a-8bbe-5fffb16b1fdb.jpg Saving resized image from: 10_whole_foods/train/carrots/e234074d-afaa-4e7f-b2dd-1a594591ee55.jpg to: data/10_whole_foods/train/carrots/e234074d-afaa-4e7f-b2dd-1a594591ee55.jpg Saving resized image from: 10_whole_foods/train/carrots/38301ad4-33c6-4b3a-b288-7513f36c524d.jpg to: data/10_whole_foods/train/carrots/38301ad4-33c6-4b3a-b288-7513f36c524d.jpg Saving resized image from: 10_whole_foods/train/carrots/d404f85f-816c-4309-a9a8-87f781384bd2.jpg to: data/10_whole_foods/train/carrots/d404f85f-816c-4309-a9a8-87f781384bd2.jpg Saving resized image from: 10_whole_foods/train/carrots/ff23acfe-6165-4089-8315-912c5b9e5f8b.jpg to: data/10_whole_foods/train/carrots/ff23acfe-6165-4089-8315-912c5b9e5f8b.jpg Saving resized image from: 10_whole_foods/train/carrots/312bdfec-adf4-473e-aa1a-681a9ae69d37.jpg to: data/10_whole_foods/train/carrots/312bdfec-adf4-473e-aa1a-681a9ae69d37.jpg Saving resized image from: 10_whole_foods/train/carrots/b8600be7-9cd4-40e9-b000-81a817336afa.jpg to: data/10_whole_foods/train/carrots/b8600be7-9cd4-40e9-b000-81a817336afa.jpg Saving resized image from: 10_whole_foods/train/carrots/5f1899e6-a0f2-4de4-88d0-c510f8bfcc7c.jpg to: data/10_whole_foods/train/carrots/5f1899e6-a0f2-4de4-88d0-c510f8bfcc7c.jpg Saving resized image from: 10_whole_foods/train/carrots/998c37ae-0f79-44b0-b6bd-3d8da04002a3.jpg to: data/10_whole_foods/train/carrots/998c37ae-0f79-44b0-b6bd-3d8da04002a3.jpg Saving resized image from: 10_whole_foods/train/carrots/8a89fb55-75bf-4b63-a0f4-f14261f3f0a2.jpg to: data/10_whole_foods/train/carrots/8a89fb55-75bf-4b63-a0f4-f14261f3f0a2.jpg Saving resized image from: 10_whole_foods/train/carrots/e9b3e12b-cc7f-4916-bf34-4d717a4676a6.jpg to: data/10_whole_foods/train/carrots/e9b3e12b-cc7f-4916-bf34-4d717a4676a6.jpg Saving resized image from: 10_whole_foods/train/carrots/77cdc587-5d02-492a-8354-1b76c320bf4a.jpg to: data/10_whole_foods/train/carrots/77cdc587-5d02-492a-8354-1b76c320bf4a.jpg Saving resized image from: 10_whole_foods/train/carrots/cf45f277-5b61-4338-bc81-d6c852bc1976.jpg to: data/10_whole_foods/train/carrots/cf45f277-5b61-4338-bc81-d6c852bc1976.jpg Saving resized image from: 10_whole_foods/train/carrots/c4484b02-1359-415e-84d0-a99d669c6f63.jpg to: data/10_whole_foods/train/carrots/c4484b02-1359-415e-84d0-a99d669c6f63.jpg Saving resized image from: 10_whole_foods/train/carrots/bd967ca7-4f1b-4e30-9569-0f659b3a3ddb.jpg to: data/10_whole_foods/train/carrots/bd967ca7-4f1b-4e30-9569-0f659b3a3ddb.jpg Saving resized image from: 10_whole_foods/train/carrots/585beff7-3eb5-4df5-8c37-6bfa0ea1d687.jpg to: data/10_whole_foods/train/carrots/585beff7-3eb5-4df5-8c37-6bfa0ea1d687.jpg Saving resized image from: 10_whole_foods/train/carrots/510ce9b4-fcc1-4c39-a09a-f9423d2126e2.jpg to: data/10_whole_foods/train/carrots/510ce9b4-fcc1-4c39-a09a-f9423d2126e2.jpg Saving resized image from: 10_whole_foods/train/carrots/492d4b65-fa2f-4732-8d56-01ce40653eaf.jpg to: data/10_whole_foods/train/carrots/492d4b65-fa2f-4732-8d56-01ce40653eaf.jpg Saving resized image from: 10_whole_foods/train/carrots/1b725d66-9843-4a99-be81-1f80c1f7548e.jpg to: data/10_whole_foods/train/carrots/1b725d66-9843-4a99-be81-1f80c1f7548e.jpg Saving resized image from: 10_whole_foods/train/carrots/c27891f7-7868-47bf-a6db-537f0939cb8a.jpg to: data/10_whole_foods/train/carrots/c27891f7-7868-47bf-a6db-537f0939cb8a.jpg Saving resized image from: 10_whole_foods/train/carrots/b87a8a86-6a36-452c-b90d-363017e2d0ce.jpg to: data/10_whole_foods/train/carrots/b87a8a86-6a36-452c-b90d-363017e2d0ce.jpg Saving resized image from: 10_whole_foods/train/carrots/624eb795-7896-4e80-92cb-e4bba7cf89cf.jpg to: data/10_whole_foods/train/carrots/624eb795-7896-4e80-92cb-e4bba7cf89cf.jpg Saving resized image from: 10_whole_foods/train/carrots/45bec6da-28b6-4926-8a9c-f815011c9e52.jpg to: data/10_whole_foods/train/carrots/45bec6da-28b6-4926-8a9c-f815011c9e52.jpg Saving resized image from: 10_whole_foods/train/carrots/961a4461-4528-459c-9d64-d6b55574836a.jpg to: data/10_whole_foods/train/carrots/961a4461-4528-459c-9d64-d6b55574836a.jpg Saving resized image from: 10_whole_foods/train/carrots/73320a72-7659-4e8a-827b-6e75eba127f8.jpg to: data/10_whole_foods/train/carrots/73320a72-7659-4e8a-827b-6e75eba127f8.jpg Saving resized image from: 10_whole_foods/train/carrots/522c2125-a627-425e-9f9a-6dbb496df4ef.jpg to: data/10_whole_foods/train/carrots/522c2125-a627-425e-9f9a-6dbb496df4ef.jpg Saving resized image from: 10_whole_foods/train/carrots/5e0d2b93-4c61-4b7a-8d8e-88aa46dcbab3.jpg to: data/10_whole_foods/train/carrots/5e0d2b93-4c61-4b7a-8d8e-88aa46dcbab3.jpg Saving resized image from: 10_whole_foods/train/mushrooms/4af6474d-defc-4c56-9a8b-70675d9b3eb3.jpg to: data/10_whole_foods/train/mushrooms/4af6474d-defc-4c56-9a8b-70675d9b3eb3.jpg Saving resized image from: 10_whole_foods/train/mushrooms/930e61b0-5f47-48d1-ae3d-6a5703cd0947.jpg to: data/10_whole_foods/train/mushrooms/930e61b0-5f47-48d1-ae3d-6a5703cd0947.jpg Saving resized image from: 10_whole_foods/train/mushrooms/195cfc61-d614-4f59-96f3-b7a2bd0e089d.jpg to: data/10_whole_foods/train/mushrooms/195cfc61-d614-4f59-96f3-b7a2bd0e089d.jpg Saving resized image from: 10_whole_foods/train/mushrooms/426fd93e-c63a-44d7-9021-a168e379a191.jpg to: data/10_whole_foods/train/mushrooms/426fd93e-c63a-44d7-9021-a168e379a191.jpg Saving resized image from: 10_whole_foods/train/mushrooms/868e1bbc-3f30-4887-a27e-25499ef4e26b.jpg to: data/10_whole_foods/train/mushrooms/868e1bbc-3f30-4887-a27e-25499ef4e26b.jpg Saving resized image from: 10_whole_foods/train/mushrooms/e284bf47-533a-41be-b76d-712ff46400b1.jpg to: data/10_whole_foods/train/mushrooms/e284bf47-533a-41be-b76d-712ff46400b1.jpg Saving resized image from: 10_whole_foods/train/mushrooms/bb1b96b9-6e31-4e43-9937-64bc38c653a4.jpg to: data/10_whole_foods/train/mushrooms/bb1b96b9-6e31-4e43-9937-64bc38c653a4.jpg Saving resized image from: 10_whole_foods/train/mushrooms/c5ab5326-f4ee-4961-8f4d-89ee2b6fb548.jpg to: data/10_whole_foods/train/mushrooms/c5ab5326-f4ee-4961-8f4d-89ee2b6fb548.jpg Saving resized image from: 10_whole_foods/train/mushrooms/1a3e3094-dd60-41a5-94d5-a593ac42a7f8.jpg to: data/10_whole_foods/train/mushrooms/1a3e3094-dd60-41a5-94d5-a593ac42a7f8.jpg Saving resized image from: 10_whole_foods/train/mushrooms/ffea1114-d652-4f21-ae44-338e2240ea9c.jpg to: data/10_whole_foods/train/mushrooms/ffea1114-d652-4f21-ae44-338e2240ea9c.jpg Saving resized image from: 10_whole_foods/train/mushrooms/d6a7a4a7-82a6-445d-9634-a0f5e72c40b7.jpg to: data/10_whole_foods/train/mushrooms/d6a7a4a7-82a6-445d-9634-a0f5e72c40b7.jpg Saving resized image from: 10_whole_foods/train/mushrooms/5d03f543-f746-4161-a8cb-07cdc925fda5.jpg to: data/10_whole_foods/train/mushrooms/5d03f543-f746-4161-a8cb-07cdc925fda5.jpg Saving resized image from: 10_whole_foods/train/mushrooms/f22ca4fc-f833-4732-8583-bf9a69e7de82.jpg to: data/10_whole_foods/train/mushrooms/f22ca4fc-f833-4732-8583-bf9a69e7de82.jpg Saving resized image from: 10_whole_foods/train/mushrooms/1c665dd8-852e-4672-bf6e-51e68df1ffe1.jpg to: data/10_whole_foods/train/mushrooms/1c665dd8-852e-4672-bf6e-51e68df1ffe1.jpg Saving resized image from: 10_whole_foods/train/mushrooms/fa8a9f3a-bf84-414f-9484-32e86b42484b.jpg to: data/10_whole_foods/train/mushrooms/fa8a9f3a-bf84-414f-9484-32e86b42484b.jpg Saving resized image from: 10_whole_foods/train/mushrooms/6414316e-0331-4ec3-b6a0-e518176785b9.jpg to: data/10_whole_foods/train/mushrooms/6414316e-0331-4ec3-b6a0-e518176785b9.jpg Saving resized image from: 10_whole_foods/train/mushrooms/a687d31e-7c4b-4529-b0eb-f66c321b6965.jpg to: data/10_whole_foods/train/mushrooms/a687d31e-7c4b-4529-b0eb-f66c321b6965.jpg Saving resized image from: 10_whole_foods/train/mushrooms/b007bbd8-7bed-4a0f-b088-4926a74103f4.jpg to: data/10_whole_foods/train/mushrooms/b007bbd8-7bed-4a0f-b088-4926a74103f4.jpg Saving resized image from: 10_whole_foods/train/mushrooms/b9c276ce-5031-4350-b094-aaf08b75e6a7.jpg to: data/10_whole_foods/train/mushrooms/b9c276ce-5031-4350-b094-aaf08b75e6a7.jpg Saving resized image from: 10_whole_foods/train/mushrooms/e6026cf5-46e9-4913-a535-e6a8f0ddce6f.jpg to: data/10_whole_foods/train/mushrooms/e6026cf5-46e9-4913-a535-e6a8f0ddce6f.jpg Saving resized image from: 10_whole_foods/train/mushrooms/5d73e895-9289-4bbc-839a-680f794f832c.jpg to: data/10_whole_foods/train/mushrooms/5d73e895-9289-4bbc-839a-680f794f832c.jpg Saving resized image from: 10_whole_foods/train/mushrooms/62cc13e4-36ec-42f7-8387-8f0683337ccd.jpg to: data/10_whole_foods/train/mushrooms/62cc13e4-36ec-42f7-8387-8f0683337ccd.jpg Saving resized image from: 10_whole_foods/train/mushrooms/998c48ec-a081-4254-8dfb-5a39ba49bf6b.jpg to: data/10_whole_foods/train/mushrooms/998c48ec-a081-4254-8dfb-5a39ba49bf6b.jpg Saving resized image from: 10_whole_foods/train/mushrooms/83f38fec-65be-497a-af1f-f11a0fbcff84.jpg to: data/10_whole_foods/train/mushrooms/83f38fec-65be-497a-af1f-f11a0fbcff84.jpg Saving resized image from: 10_whole_foods/train/mushrooms/080e01e9-00d5-4cd9-8b5a-693d29ac5a4d.jpg to: data/10_whole_foods/train/mushrooms/080e01e9-00d5-4cd9-8b5a-693d29ac5a4d.jpg Saving resized image from: 10_whole_foods/train/mushrooms/364ecd9e-4eb6-46c8-9d9e-fd3cc370738b.jpg to: data/10_whole_foods/train/mushrooms/364ecd9e-4eb6-46c8-9d9e-fd3cc370738b.jpg Saving resized image from: 10_whole_foods/train/mushrooms/1ed9f2e0-9f14-4a2d-a7ac-057c1f491680.jpg to: data/10_whole_foods/train/mushrooms/1ed9f2e0-9f14-4a2d-a7ac-057c1f491680.jpg Saving resized image from: 10_whole_foods/train/mushrooms/699e99f0-1e04-4d65-bc00-e6130de2e2dc.jpg to: data/10_whole_foods/train/mushrooms/699e99f0-1e04-4d65-bc00-e6130de2e2dc.jpg Saving resized image from: 10_whole_foods/train/mushrooms/14ba4e16-b558-4d8e-b04a-5cf8d09fd4fe.jpg to: data/10_whole_foods/train/mushrooms/14ba4e16-b558-4d8e-b04a-5cf8d09fd4fe.jpg Saving resized image from: 10_whole_foods/train/mushrooms/2a1a4932-fa2f-4cef-a684-ef8520dac0fc.jpg to: data/10_whole_foods/train/mushrooms/2a1a4932-fa2f-4cef-a684-ef8520dac0fc.jpg Saving resized image from: 10_whole_foods/train/mushrooms/1056aa55-1e7b-4f12-9737-bfce78dddf09.jpg to: data/10_whole_foods/train/mushrooms/1056aa55-1e7b-4f12-9737-bfce78dddf09.jpg Saving resized image from: 10_whole_foods/train/mushrooms/f2cbb8af-e9b8-42f3-affb-83d2c5d6fd84.jpg to: data/10_whole_foods/train/mushrooms/f2cbb8af-e9b8-42f3-affb-83d2c5d6fd84.jpg Saving resized image from: 10_whole_foods/train/mushrooms/671c6ab3-959f-4bee-a415-b2ee194ec98f.jpg to: data/10_whole_foods/train/mushrooms/671c6ab3-959f-4bee-a415-b2ee194ec98f.jpg Saving resized image from: 10_whole_foods/train/mushrooms/95bb8793-d716-47a4-aea7-7334be8eae39.jpg to: data/10_whole_foods/train/mushrooms/95bb8793-d716-47a4-aea7-7334be8eae39.jpg Saving resized image from: 10_whole_foods/train/mushrooms/2889c582-fdf2-4e36-84f1-8f0df06b58d6.jpg to: data/10_whole_foods/train/mushrooms/2889c582-fdf2-4e36-84f1-8f0df06b58d6.jpg Saving resized image from: 10_whole_foods/train/mushrooms/63d8103e-6cda-4cd4-833a-50768ec60caf.jpg to: data/10_whole_foods/train/mushrooms/63d8103e-6cda-4cd4-833a-50768ec60caf.jpg Saving resized image from: 10_whole_foods/train/mushrooms/4703d2b5-f452-467e-9708-e23ccda5296b.jpg to: data/10_whole_foods/train/mushrooms/4703d2b5-f452-467e-9708-e23ccda5296b.jpg Saving resized image from: 10_whole_foods/train/mushrooms/7118cd87-2daf-4b26-83da-b5e58a0ceaac.jpg to: data/10_whole_foods/train/mushrooms/7118cd87-2daf-4b26-83da-b5e58a0ceaac.jpg Saving resized image from: 10_whole_foods/train/mushrooms/931a1608-452b-4351-a09b-cc345ce1d549.jpg to: data/10_whole_foods/train/mushrooms/931a1608-452b-4351-a09b-cc345ce1d549.jpg Saving resized image from: 10_whole_foods/train/mushrooms/f4cf51b5-603b-47f6-9d09-c465c4c8602a.jpg to: data/10_whole_foods/train/mushrooms/f4cf51b5-603b-47f6-9d09-c465c4c8602a.jpg Saving resized image from: 10_whole_foods/train/mushrooms/ca7e9218-350e-4696-ba72-740facf60f50.jpg to: data/10_whole_foods/train/mushrooms/ca7e9218-350e-4696-ba72-740facf60f50.jpg Saving resized image from: 10_whole_foods/train/mushrooms/be689ded-dbf2-402a-a6a1-f78973d8e200.jpg to: data/10_whole_foods/train/mushrooms/be689ded-dbf2-402a-a6a1-f78973d8e200.jpg Saving resized image from: 10_whole_foods/train/mushrooms/dea1a984-36b0-4583-9de3-b5dc7652125b.jpg to: data/10_whole_foods/train/mushrooms/dea1a984-36b0-4583-9de3-b5dc7652125b.jpg Saving resized image from: 10_whole_foods/train/mushrooms/f0d2513e-8727-486b-891a-bc53c5224340.jpg to: data/10_whole_foods/train/mushrooms/f0d2513e-8727-486b-891a-bc53c5224340.jpg Saving resized image from: 10_whole_foods/train/mushrooms/a2cf3ee7-fdd6-4b76-b329-493044a0fb66.jpg to: data/10_whole_foods/train/mushrooms/a2cf3ee7-fdd6-4b76-b329-493044a0fb66.jpg Saving resized image from: 10_whole_foods/train/mushrooms/6b0f0d90-99aa-4d13-ba5c-2ea3d9db563f.jpg to: data/10_whole_foods/train/mushrooms/6b0f0d90-99aa-4d13-ba5c-2ea3d9db563f.jpg Saving resized image from: 10_whole_foods/train/mushrooms/38ac4819-c562-40f2-b9b8-fe4221f8340f.jpg to: data/10_whole_foods/train/mushrooms/38ac4819-c562-40f2-b9b8-fe4221f8340f.jpg Saving resized image from: 10_whole_foods/train/mushrooms/ee244dd1-a227-4bc3-ae7d-3635202b2cb2.jpg to: data/10_whole_foods/train/mushrooms/ee244dd1-a227-4bc3-ae7d-3635202b2cb2.jpg Saving resized image from: 10_whole_foods/train/mushrooms/a8396fa2-f114-49e5-97ac-93dff2d3ddca.jpg to: data/10_whole_foods/train/mushrooms/a8396fa2-f114-49e5-97ac-93dff2d3ddca.jpg Saving resized image from: 10_whole_foods/train/mushrooms/29d7b0e9-afdb-404f-91b8-51c855d23ba5.jpg to: data/10_whole_foods/train/mushrooms/29d7b0e9-afdb-404f-91b8-51c855d23ba5.jpg Saving resized image from: 10_whole_foods/train/mushrooms/c2f57b7c-d7cb-4294-9c2f-53bba9068f91.jpg to: data/10_whole_foods/train/mushrooms/c2f57b7c-d7cb-4294-9c2f-53bba9068f91.jpg Saving resized image from: 10_whole_foods/train/mushrooms/760a335a-6585-49c6-9b7f-7f0b37455ae3.jpg to: data/10_whole_foods/train/mushrooms/760a335a-6585-49c6-9b7f-7f0b37455ae3.jpg Saving resized image from: 10_whole_foods/train/mushrooms/96e08e2c-ecc5-4cb8-be6e-5ff1ca5f9631.jpg to: data/10_whole_foods/train/mushrooms/96e08e2c-ecc5-4cb8-be6e-5ff1ca5f9631.jpg Saving resized image from: 10_whole_foods/train/mushrooms/7a3ee5c6-49c7-4104-8446-2d6bc9198864.jpg to: data/10_whole_foods/train/mushrooms/7a3ee5c6-49c7-4104-8446-2d6bc9198864.jpg Saving resized image from: 10_whole_foods/train/mushrooms/694482b0-b2f3-4571-9c10-c40b0f4111cb.jpg to: data/10_whole_foods/train/mushrooms/694482b0-b2f3-4571-9c10-c40b0f4111cb.jpg Saving resized image from: 10_whole_foods/train/mushrooms/3ab8bbfd-5e4f-4513-8dac-205a1cefbd8e.jpg to: data/10_whole_foods/train/mushrooms/3ab8bbfd-5e4f-4513-8dac-205a1cefbd8e.jpg Saving resized image from: 10_whole_foods/train/mushrooms/30984d79-d568-44b2-8521-22f8bc0a8bfc.jpg to: data/10_whole_foods/train/mushrooms/30984d79-d568-44b2-8521-22f8bc0a8bfc.jpg Saving resized image from: 10_whole_foods/train/mushrooms/9c2ffd40-a0c1-407b-a283-ae623ddf9873.jpg to: data/10_whole_foods/train/mushrooms/9c2ffd40-a0c1-407b-a283-ae623ddf9873.jpg Saving resized image from: 10_whole_foods/train/mushrooms/b94b4cad-b642-4538-84e4-287cc548fc49.jpg to: data/10_whole_foods/train/mushrooms/b94b4cad-b642-4538-84e4-287cc548fc49.jpg Saving resized image from: 10_whole_foods/train/mushrooms/183c1c98-9e2f-48b3-ad36-e1b5ad5c0aa5.jpg to: data/10_whole_foods/train/mushrooms/183c1c98-9e2f-48b3-ad36-e1b5ad5c0aa5.jpg Saving resized image from: 10_whole_foods/train/mushrooms/69a83700-740e-4dad-86db-0d0b541a1368.jpg to: data/10_whole_foods/train/mushrooms/69a83700-740e-4dad-86db-0d0b541a1368.jpg Saving resized image from: 10_whole_foods/train/mushrooms/f7e76953-1b09-4f8f-9786-0eb18d43bf10.jpg to: data/10_whole_foods/train/mushrooms/f7e76953-1b09-4f8f-9786-0eb18d43bf10.jpg Saving resized image from: 10_whole_foods/train/mushrooms/760c04ae-4e73-407d-84c5-60f0dd9d6177.jpg to: data/10_whole_foods/train/mushrooms/760c04ae-4e73-407d-84c5-60f0dd9d6177.jpg Saving resized image from: 10_whole_foods/train/mushrooms/b1c1f86b-7f3c-4869-87d7-5bc26dfbb314.jpg to: data/10_whole_foods/train/mushrooms/b1c1f86b-7f3c-4869-87d7-5bc26dfbb314.jpg Saving resized image from: 10_whole_foods/train/mushrooms/4572c6c2-9436-43b1-a28c-7b27e2b65312.jpg to: data/10_whole_foods/train/mushrooms/4572c6c2-9436-43b1-a28c-7b27e2b65312.jpg Saving resized image from: 10_whole_foods/train/mushrooms/437bd2c2-a937-433d-87e8-e5558ffc3f98.jpg to: data/10_whole_foods/train/mushrooms/437bd2c2-a937-433d-87e8-e5558ffc3f98.jpg Saving resized image from: 10_whole_foods/train/apple/5ea7c93c-02c9-4838-85e4-7b393e47066c.jpg to: data/10_whole_foods/train/apple/5ea7c93c-02c9-4838-85e4-7b393e47066c.jpg Saving resized image from: 10_whole_foods/train/apple/6399f4d9-c141-4088-95d4-0837e94943d7.jpg to: data/10_whole_foods/train/apple/6399f4d9-c141-4088-95d4-0837e94943d7.jpg Saving resized image from: 10_whole_foods/train/apple/66eadb54-2134-431c-b650-c94fb47d8fec.jpg to: data/10_whole_foods/train/apple/66eadb54-2134-431c-b650-c94fb47d8fec.jpg Saving resized image from: 10_whole_foods/train/apple/72e7aba2-ff8e-43ae-9315-c5bfe2de81b7.jpg to: data/10_whole_foods/train/apple/72e7aba2-ff8e-43ae-9315-c5bfe2de81b7.jpg Saving resized image from: 10_whole_foods/train/apple/a066c0b4-b460-466f-8576-3a204a1b6657.jpg to: data/10_whole_foods/train/apple/a066c0b4-b460-466f-8576-3a204a1b6657.jpg Saving resized image from: 10_whole_foods/train/apple/36017ebc-51a3-4bb8-8458-7f5269476564.jpg to: data/10_whole_foods/train/apple/36017ebc-51a3-4bb8-8458-7f5269476564.jpg Saving resized image from: 10_whole_foods/train/apple/7605ed26-8ed4-4dd8-bc45-c5c5543451ab.jpg to: data/10_whole_foods/train/apple/7605ed26-8ed4-4dd8-bc45-c5c5543451ab.jpg Saving resized image from: 10_whole_foods/train/apple/f998df1f-b49c-4f75-8a43-4625e4074f26.jpg to: data/10_whole_foods/train/apple/f998df1f-b49c-4f75-8a43-4625e4074f26.jpg Saving resized image from: 10_whole_foods/train/apple/789f3404-84a7-4442-9fc1-d6a4e3b634fc.jpg to: data/10_whole_foods/train/apple/789f3404-84a7-4442-9fc1-d6a4e3b634fc.jpg Saving resized image from: 10_whole_foods/train/apple/9e15af35-2163-48a4-a989-e5713dfa1b7e.jpg to: data/10_whole_foods/train/apple/9e15af35-2163-48a4-a989-e5713dfa1b7e.jpg Saving resized image from: 10_whole_foods/train/apple/33a83d12-e83a-4e6a-82c6-9cc7493d236b.jpg to: data/10_whole_foods/train/apple/33a83d12-e83a-4e6a-82c6-9cc7493d236b.jpg Saving resized image from: 10_whole_foods/train/apple/679c6ddb-a5a1-4548-bb43-b8e832ac25ef.jpg to: data/10_whole_foods/train/apple/679c6ddb-a5a1-4548-bb43-b8e832ac25ef.jpg Saving resized image from: 10_whole_foods/train/apple/7819187d-7652-4ef7-a8ee-4934a88dfd99.jpg to: data/10_whole_foods/train/apple/7819187d-7652-4ef7-a8ee-4934a88dfd99.jpg Saving resized image from: 10_whole_foods/train/apple/d591eb0a-aa60-4351-baf1-2e2e3cd976e0.jpg to: data/10_whole_foods/train/apple/d591eb0a-aa60-4351-baf1-2e2e3cd976e0.jpg Saving resized image from: 10_whole_foods/train/apple/a31d1393-8613-49f3-a75d-3327bd7dcdf6.jpg to: data/10_whole_foods/train/apple/a31d1393-8613-49f3-a75d-3327bd7dcdf6.jpg Saving resized image from: 10_whole_foods/train/apple/4e0960f3-6c7f-4d13-a854-c948ff0c641c.jpg to: data/10_whole_foods/train/apple/4e0960f3-6c7f-4d13-a854-c948ff0c641c.jpg Saving resized image from: 10_whole_foods/train/apple/b2059926-439d-4689-a7bf-36883607d4c6.jpg to: data/10_whole_foods/train/apple/b2059926-439d-4689-a7bf-36883607d4c6.jpg Saving resized image from: 10_whole_foods/train/apple/c86a2ae8-3229-47f6-bfdb-52c24c915792.jpg to: data/10_whole_foods/train/apple/c86a2ae8-3229-47f6-bfdb-52c24c915792.jpg Saving resized image from: 10_whole_foods/train/apple/200757eb-6def-4395-84ff-d466e0c12c2d.jpg to: data/10_whole_foods/train/apple/200757eb-6def-4395-84ff-d466e0c12c2d.jpg Saving resized image from: 10_whole_foods/train/apple/05e937ad-80bf-4f8a-a7e9-92b00d5d6593.jpg to: data/10_whole_foods/train/apple/05e937ad-80bf-4f8a-a7e9-92b00d5d6593.jpg Saving resized image from: 10_whole_foods/train/apple/f83feb45-42e4-4ecf-9e1b-f7bd7c2a07ab.jpg to: data/10_whole_foods/train/apple/f83feb45-42e4-4ecf-9e1b-f7bd7c2a07ab.jpg Saving resized image from: 10_whole_foods/train/apple/cbdaa6d0-55e4-47a7-b0b7-fe0ff60f6e51.jpg to: data/10_whole_foods/train/apple/cbdaa6d0-55e4-47a7-b0b7-fe0ff60f6e51.jpg Saving resized image from: 10_whole_foods/train/apple/943a9459-5417-4115-becd-a5c448de9a19.jpg to: data/10_whole_foods/train/apple/943a9459-5417-4115-becd-a5c448de9a19.jpg Saving resized image from: 10_whole_foods/train/apple/c11b515a-f5ee-4318-8f5e-9e60d3868781.jpg to: data/10_whole_foods/train/apple/c11b515a-f5ee-4318-8f5e-9e60d3868781.jpg Saving resized image from: 10_whole_foods/train/apple/9c848805-4a24-4579-afd7-adc62460015d.jpg to: data/10_whole_foods/train/apple/9c848805-4a24-4579-afd7-adc62460015d.jpg Saving resized image from: 10_whole_foods/train/apple/674f66c4-23be-4342-bae7-daad4133dc86.jpg to: data/10_whole_foods/train/apple/674f66c4-23be-4342-bae7-daad4133dc86.jpg Saving resized image from: 10_whole_foods/train/apple/622d2c38-1a20-48b8-a615-0b9c44ab4927.jpg to: data/10_whole_foods/train/apple/622d2c38-1a20-48b8-a615-0b9c44ab4927.jpg Saving resized image from: 10_whole_foods/train/apple/2503ad13-4d22-4769-9f52-58205b47abf7.jpg to: data/10_whole_foods/train/apple/2503ad13-4d22-4769-9f52-58205b47abf7.jpg Saving resized image from: 10_whole_foods/train/apple/0ba339b9-0eb1-43a1-a62a-2737e85e6a29.jpg to: data/10_whole_foods/train/apple/0ba339b9-0eb1-43a1-a62a-2737e85e6a29.jpg Saving resized image from: 10_whole_foods/train/apple/95ada9f6-96d7-481d-b995-a7dc694be9c2.jpg to: data/10_whole_foods/train/apple/95ada9f6-96d7-481d-b995-a7dc694be9c2.jpg Saving resized image from: 10_whole_foods/train/apple/af044322-e9ac-44ba-8472-52c5718dadc8.jpg to: data/10_whole_foods/train/apple/af044322-e9ac-44ba-8472-52c5718dadc8.jpg Saving resized image from: 10_whole_foods/train/apple/5017c687-0eea-4704-9513-97a7ae9eb753.jpg to: data/10_whole_foods/train/apple/5017c687-0eea-4704-9513-97a7ae9eb753.jpg Saving resized image from: 10_whole_foods/train/apple/dbc543f1-b8ce-4a50-bf01-dbd65f1a21b5.jpg to: data/10_whole_foods/train/apple/dbc543f1-b8ce-4a50-bf01-dbd65f1a21b5.jpg Saving resized image from: 10_whole_foods/train/apple/0a8a17f2-b526-4ad1-82ec-832b79b3ef3c.jpg to: data/10_whole_foods/train/apple/0a8a17f2-b526-4ad1-82ec-832b79b3ef3c.jpg Saving resized image from: 10_whole_foods/train/apple/d9b10770-2f10-41fa-80d3-0a4060456499.jpg to: data/10_whole_foods/train/apple/d9b10770-2f10-41fa-80d3-0a4060456499.jpg Saving resized image from: 10_whole_foods/train/apple/871d8b1c-00e9-4bc6-8584-5758610a47ed.jpg to: data/10_whole_foods/train/apple/871d8b1c-00e9-4bc6-8584-5758610a47ed.jpg Saving resized image from: 10_whole_foods/train/apple/ed5b6fbe-204e-40b6-8110-f2aecbc8ff64.jpg to: data/10_whole_foods/train/apple/ed5b6fbe-204e-40b6-8110-f2aecbc8ff64.jpg Saving resized image from: 10_whole_foods/train/apple/dd3c9dce-e2c3-4eaa-b9f3-40b0ededbf7f.jpg to: data/10_whole_foods/train/apple/dd3c9dce-e2c3-4eaa-b9f3-40b0ededbf7f.jpg Saving resized image from: 10_whole_foods/train/apple/9ea7d077-8f02-4f59-aad8-886e675bdf01.jpg to: data/10_whole_foods/train/apple/9ea7d077-8f02-4f59-aad8-886e675bdf01.jpg Saving resized image from: 10_whole_foods/train/apple/3cc62c9b-7ea8-41f4-9579-787ffae2b458.jpg to: data/10_whole_foods/train/apple/3cc62c9b-7ea8-41f4-9579-787ffae2b458.jpg Saving resized image from: 10_whole_foods/train/apple/82c9a389-7ac6-4043-a404-856d97608b1e.jpg to: data/10_whole_foods/train/apple/82c9a389-7ac6-4043-a404-856d97608b1e.jpg Saving resized image from: 10_whole_foods/train/apple/782b3d85-7cdc-4ac3-bb2b-1eed2324cc20.jpg to: data/10_whole_foods/train/apple/782b3d85-7cdc-4ac3-bb2b-1eed2324cc20.jpg Saving resized image from: 10_whole_foods/train/apple/217cb25a-56be-46be-b4d1-76b9edd1511d.jpg to: data/10_whole_foods/train/apple/217cb25a-56be-46be-b4d1-76b9edd1511d.jpg Saving resized image from: 10_whole_foods/train/apple/d376d944-9a69-429f-850e-dcbd4dad8a1f.jpg to: data/10_whole_foods/train/apple/d376d944-9a69-429f-850e-dcbd4dad8a1f.jpg Saving resized image from: 10_whole_foods/train/apple/3f8fe2b7-f1b9-45da-8e53-7fd7949024a4.jpg to: data/10_whole_foods/train/apple/3f8fe2b7-f1b9-45da-8e53-7fd7949024a4.jpg Saving resized image from: 10_whole_foods/train/apple/a18f4504-8d9c-4bbe-b99e-a0c2aadd0913.jpg to: data/10_whole_foods/train/apple/a18f4504-8d9c-4bbe-b99e-a0c2aadd0913.jpg Saving resized image from: 10_whole_foods/train/apple/44eed694-cc8a-41b7-8482-14abee801fa7.jpg to: data/10_whole_foods/train/apple/44eed694-cc8a-41b7-8482-14abee801fa7.jpg Saving resized image from: 10_whole_foods/train/apple/6d37580a-995e-41d9-a3db-414022ba5708.jpg to: data/10_whole_foods/train/apple/6d37580a-995e-41d9-a3db-414022ba5708.jpg Saving resized image from: 10_whole_foods/train/apple/7887b6a9-eacf-4150-9ac2-ac24fdd46a68.jpg to: data/10_whole_foods/train/apple/7887b6a9-eacf-4150-9ac2-ac24fdd46a68.jpg Saving resized image from: 10_whole_foods/train/apple/0c0397c9-a760-4eee-86c2-8127be40bf8d.jpg to: data/10_whole_foods/train/apple/0c0397c9-a760-4eee-86c2-8127be40bf8d.jpg Saving resized image from: 10_whole_foods/train/apple/3efd90ee-1519-40c2-877d-57cbde8ba29c.jpg to: data/10_whole_foods/train/apple/3efd90ee-1519-40c2-877d-57cbde8ba29c.jpg Saving resized image from: 10_whole_foods/train/apple/bcbe6656-8a27-4e97-997b-da730247164c.jpg to: data/10_whole_foods/train/apple/bcbe6656-8a27-4e97-997b-da730247164c.jpg Saving resized image from: 10_whole_foods/train/apple/2bfd0d8b-40e1-4bab-9be5-9257f3370117.jpg to: data/10_whole_foods/train/apple/2bfd0d8b-40e1-4bab-9be5-9257f3370117.jpg Saving resized image from: 10_whole_foods/train/apple/4c667aec-1506-4c91-9ac6-291e0ef5f9be.jpg to: data/10_whole_foods/train/apple/4c667aec-1506-4c91-9ac6-291e0ef5f9be.jpg Saving resized image from: 10_whole_foods/train/apple/c88c06bc-1723-46da-b46b-e47a5f3adbd4.jpg to: data/10_whole_foods/train/apple/c88c06bc-1723-46da-b46b-e47a5f3adbd4.jpg Saving resized image from: 10_whole_foods/train/apple/069e0079-c839-4e55-a416-66906384c48f.jpg to: data/10_whole_foods/train/apple/069e0079-c839-4e55-a416-66906384c48f.jpg Saving resized image from: 10_whole_foods/train/apple/7aeda53b-1a4c-4922-ad61-0b8f1af8cacd.jpg to: data/10_whole_foods/train/apple/7aeda53b-1a4c-4922-ad61-0b8f1af8cacd.jpg Saving resized image from: 10_whole_foods/train/strawberries/97401b93-732f-4402-ac2f-605f0cf58e48.jpg to: data/10_whole_foods/train/strawberries/97401b93-732f-4402-ac2f-605f0cf58e48.jpg Saving resized image from: 10_whole_foods/train/strawberries/7b5ba59f-ee4c-4b3e-a020-34b6cd96cf47.jpg to: data/10_whole_foods/train/strawberries/7b5ba59f-ee4c-4b3e-a020-34b6cd96cf47.jpg Saving resized image from: 10_whole_foods/train/strawberries/cdd4887b-0618-4519-9882-70394dcf8e47.jpg to: data/10_whole_foods/train/strawberries/cdd4887b-0618-4519-9882-70394dcf8e47.jpg Saving resized image from: 10_whole_foods/train/strawberries/aa0cddc4-c2c0-439e-b276-46c14e7575dd.jpg to: data/10_whole_foods/train/strawberries/aa0cddc4-c2c0-439e-b276-46c14e7575dd.jpg Saving resized image from: 10_whole_foods/train/strawberries/1fb5b9d2-482d-4663-b303-d108906069af.jpg to: data/10_whole_foods/train/strawberries/1fb5b9d2-482d-4663-b303-d108906069af.jpg Saving resized image from: 10_whole_foods/train/strawberries/098c3b3b-c1ea-4521-88a3-b34b703621f2.jpg to: data/10_whole_foods/train/strawberries/098c3b3b-c1ea-4521-88a3-b34b703621f2.jpg Saving resized image from: 10_whole_foods/train/strawberries/a72f6647-58ed-4b7f-b78f-cef1bc723939.jpg to: data/10_whole_foods/train/strawberries/a72f6647-58ed-4b7f-b78f-cef1bc723939.jpg Saving resized image from: 10_whole_foods/train/strawberries/889c22eb-09f4-41cf-a818-aa00c0971f85.jpg to: data/10_whole_foods/train/strawberries/889c22eb-09f4-41cf-a818-aa00c0971f85.jpg Saving resized image from: 10_whole_foods/train/strawberries/5c999765-3dae-4299-a855-43858bfe12ef.jpg to: data/10_whole_foods/train/strawberries/5c999765-3dae-4299-a855-43858bfe12ef.jpg Saving resized image from: 10_whole_foods/train/strawberries/3bfb634c-ebfd-4aaa-86a6-8e2b3943c9e0.jpg to: data/10_whole_foods/train/strawberries/3bfb634c-ebfd-4aaa-86a6-8e2b3943c9e0.jpg Saving resized image from: 10_whole_foods/train/strawberries/e44b09e4-dd0e-4e14-bf3a-af21f5e3431d.jpg to: data/10_whole_foods/train/strawberries/e44b09e4-dd0e-4e14-bf3a-af21f5e3431d.jpg Saving resized image from: 10_whole_foods/train/strawberries/b366091d-9b26-467d-8934-f052b95db39d.jpg to: data/10_whole_foods/train/strawberries/b366091d-9b26-467d-8934-f052b95db39d.jpg Saving resized image from: 10_whole_foods/train/strawberries/5981ebd5-6e03-4350-b42a-dc4342de817b.jpg to: data/10_whole_foods/train/strawberries/5981ebd5-6e03-4350-b42a-dc4342de817b.jpg Saving resized image from: 10_whole_foods/train/strawberries/ca893056-526d-48e9-8335-c371c5a1455c.jpg to: data/10_whole_foods/train/strawberries/ca893056-526d-48e9-8335-c371c5a1455c.jpg Saving resized image from: 10_whole_foods/train/strawberries/035e904a-a551-444d-899e-583c8c1d888e.jpg to: data/10_whole_foods/train/strawberries/035e904a-a551-444d-899e-583c8c1d888e.jpg Saving resized image from: 10_whole_foods/train/strawberries/0029454f-5be1-4cfc-be24-798c2632f90e.jpg to: data/10_whole_foods/train/strawberries/0029454f-5be1-4cfc-be24-798c2632f90e.jpg Saving resized image from: 10_whole_foods/train/strawberries/d45385cd-49a8-4eb6-a7c7-c21254b63142.jpg to: data/10_whole_foods/train/strawberries/d45385cd-49a8-4eb6-a7c7-c21254b63142.jpg Saving resized image from: 10_whole_foods/train/strawberries/b25594e2-95a0-4074-8bda-499b14c5d02e.jpg to: data/10_whole_foods/train/strawberries/b25594e2-95a0-4074-8bda-499b14c5d02e.jpg Saving resized image from: 10_whole_foods/train/strawberries/f9e3ac56-cfff-41b0-9f9e-ba9dc2a55580.jpg to: data/10_whole_foods/train/strawberries/f9e3ac56-cfff-41b0-9f9e-ba9dc2a55580.jpg Saving resized image from: 10_whole_foods/train/strawberries/96ab325e-218b-4e4a-88dc-2a790114ef87.jpg to: data/10_whole_foods/train/strawberries/96ab325e-218b-4e4a-88dc-2a790114ef87.jpg Saving resized image from: 10_whole_foods/train/strawberries/d3d7aac5-6559-46b8-96da-bc681ef4a88c.jpg to: data/10_whole_foods/train/strawberries/d3d7aac5-6559-46b8-96da-bc681ef4a88c.jpg Saving resized image from: 10_whole_foods/train/strawberries/97a70b31-c99f-459b-be6c-8b64a67069c6.jpg to: data/10_whole_foods/train/strawberries/97a70b31-c99f-459b-be6c-8b64a67069c6.jpg Saving resized image from: 10_whole_foods/train/strawberries/9670bed3-b5f9-44f0-9633-59b83eab578c.jpg to: data/10_whole_foods/train/strawberries/9670bed3-b5f9-44f0-9633-59b83eab578c.jpg Saving resized image from: 10_whole_foods/train/strawberries/5aaaf57c-02a2-460c-90e5-fdb32fce300a.jpg to: data/10_whole_foods/train/strawberries/5aaaf57c-02a2-460c-90e5-fdb32fce300a.jpg Saving resized image from: 10_whole_foods/train/strawberries/dcf999ea-9124-4cc6-a1c1-1f0964ec07ea.jpg to: data/10_whole_foods/train/strawberries/dcf999ea-9124-4cc6-a1c1-1f0964ec07ea.jpg Saving resized image from: 10_whole_foods/train/strawberries/c32692fc-03b8-450d-8b40-8596d80c44ae.jpg to: data/10_whole_foods/train/strawberries/c32692fc-03b8-450d-8b40-8596d80c44ae.jpg Saving resized image from: 10_whole_foods/train/strawberries/6c2851b9-f6fd-437a-8879-c34957c1ab33.jpg to: data/10_whole_foods/train/strawberries/6c2851b9-f6fd-437a-8879-c34957c1ab33.jpg Saving resized image from: 10_whole_foods/train/strawberries/4139d0ac-d331-44dc-b1ea-a400639d3d1c.jpg to: data/10_whole_foods/train/strawberries/4139d0ac-d331-44dc-b1ea-a400639d3d1c.jpg Saving resized image from: 10_whole_foods/train/strawberries/ff68ee91-aea7-4a2f-a1c8-e878f9dc7a67.jpg to: data/10_whole_foods/train/strawberries/ff68ee91-aea7-4a2f-a1c8-e878f9dc7a67.jpg Saving resized image from: 10_whole_foods/train/strawberries/23f31526-5947-402a-bd29-9aa51252d60a.jpg to: data/10_whole_foods/train/strawberries/23f31526-5947-402a-bd29-9aa51252d60a.jpg Saving resized image from: 10_whole_foods/train/strawberries/b069c788-b9cd-4633-9b81-e088b0fe700a.jpg to: data/10_whole_foods/train/strawberries/b069c788-b9cd-4633-9b81-e088b0fe700a.jpg Saving resized image from: 10_whole_foods/train/strawberries/d03a665f-7808-4f76-9f2e-621aea6cc5f5.jpg to: data/10_whole_foods/train/strawberries/d03a665f-7808-4f76-9f2e-621aea6cc5f5.jpg Saving resized image from: 10_whole_foods/train/strawberries/2908904c-8116-4035-84d6-387891abba6b.jpg to: data/10_whole_foods/train/strawberries/2908904c-8116-4035-84d6-387891abba6b.jpg Saving resized image from: 10_whole_foods/train/strawberries/efd06ae3-068d-44ec-b8fe-b22e53433402.jpg to: data/10_whole_foods/train/strawberries/efd06ae3-068d-44ec-b8fe-b22e53433402.jpg Saving resized image from: 10_whole_foods/train/strawberries/2c9e50e1-2beb-4fca-8df1-ba7005657ef2.jpg to: data/10_whole_foods/train/strawberries/2c9e50e1-2beb-4fca-8df1-ba7005657ef2.jpg Saving resized image from: 10_whole_foods/train/strawberries/12a8b99f-1d3e-4352-92d6-1a30013afa28.jpg to: data/10_whole_foods/train/strawberries/12a8b99f-1d3e-4352-92d6-1a30013afa28.jpg Saving resized image from: 10_whole_foods/train/strawberries/65de5294-cc7e-45c9-80b1-515b291e8fc3.jpg to: data/10_whole_foods/train/strawberries/65de5294-cc7e-45c9-80b1-515b291e8fc3.jpg Saving resized image from: 10_whole_foods/train/strawberries/ca2cf3f4-97d9-4b3c-881b-a7f8b089b555.jpg to: data/10_whole_foods/train/strawberries/ca2cf3f4-97d9-4b3c-881b-a7f8b089b555.jpg Saving resized image from: 10_whole_foods/train/strawberries/307f692b-6a05-4696-add9-734dd6e729df.jpg to: data/10_whole_foods/train/strawberries/307f692b-6a05-4696-add9-734dd6e729df.jpg Saving resized image from: 10_whole_foods/train/strawberries/a3257516-359e-4bcc-bbaa-860e0369d1b7.jpg to: data/10_whole_foods/train/strawberries/a3257516-359e-4bcc-bbaa-860e0369d1b7.jpg Saving resized image from: 10_whole_foods/train/strawberries/171a0679-a219-4b8a-a08d-1d5e7e9434d5.jpg to: data/10_whole_foods/train/strawberries/171a0679-a219-4b8a-a08d-1d5e7e9434d5.jpg Saving resized image from: 10_whole_foods/train/strawberries/bbf2113b-7f4a-4d77-9b55-e8276bc22837.jpg to: data/10_whole_foods/train/strawberries/bbf2113b-7f4a-4d77-9b55-e8276bc22837.jpg Saving resized image from: 10_whole_foods/train/strawberries/dcd086ff-7518-4926-b8c5-4e17aa7a08da.jpg to: data/10_whole_foods/train/strawberries/dcd086ff-7518-4926-b8c5-4e17aa7a08da.jpg Saving resized image from: 10_whole_foods/train/strawberries/38b104ed-0021-43b9-9d35-9d481ddb2f0c.jpg to: data/10_whole_foods/train/strawberries/38b104ed-0021-43b9-9d35-9d481ddb2f0c.jpg Saving resized image from: 10_whole_foods/train/strawberries/904c408a-aeb3-43d0-9f12-f17e23678593.jpg to: data/10_whole_foods/train/strawberries/904c408a-aeb3-43d0-9f12-f17e23678593.jpg Saving resized image from: 10_whole_foods/train/strawberries/ae31f687-4113-4a9a-97fa-6b24744ed27e.jpg to: data/10_whole_foods/train/strawberries/ae31f687-4113-4a9a-97fa-6b24744ed27e.jpg Saving resized image from: 10_whole_foods/train/strawberries/df52f837-270c-4dd3-ab60-7cd81299fdc1.jpg to: data/10_whole_foods/train/strawberries/df52f837-270c-4dd3-ab60-7cd81299fdc1.jpg Saving resized image from: 10_whole_foods/train/strawberries/f93cc88b-1652-4d54-a221-f57f4b7aab93.jpg to: data/10_whole_foods/train/strawberries/f93cc88b-1652-4d54-a221-f57f4b7aab93.jpg Saving resized image from: 10_whole_foods/train/strawberries/6f9f75a5-0093-4a24-989a-d178c27756f3.jpg to: data/10_whole_foods/train/strawberries/6f9f75a5-0093-4a24-989a-d178c27756f3.jpg Saving resized image from: 10_whole_foods/train/strawberries/3112d7b5-88b8-4571-8eb4-1b3a9830d873.jpg to: data/10_whole_foods/train/strawberries/3112d7b5-88b8-4571-8eb4-1b3a9830d873.jpg Saving resized image from: 10_whole_foods/train/strawberries/8a7dfc3d-4486-450a-aee6-9a191679f044.jpg to: data/10_whole_foods/train/strawberries/8a7dfc3d-4486-450a-aee6-9a191679f044.jpg Saving resized image from: 10_whole_foods/train/strawberries/c4db9c1e-24bf-4448-a285-9dfe637032f0.jpg to: data/10_whole_foods/train/strawberries/c4db9c1e-24bf-4448-a285-9dfe637032f0.jpg Saving resized image from: 10_whole_foods/train/strawberries/24bdfb6d-144b-4f0f-bd19-9ad69b4ad609.jpg to: data/10_whole_foods/train/strawberries/24bdfb6d-144b-4f0f-bd19-9ad69b4ad609.jpg Saving resized image from: 10_whole_foods/train/strawberries/fb418dc4-eb0a-49f8-8dd2-f64f66a48924.jpg to: data/10_whole_foods/train/strawberries/fb418dc4-eb0a-49f8-8dd2-f64f66a48924.jpg Saving resized image from: 10_whole_foods/train/strawberries/aa07b6f6-2b0d-48df-b4bb-a63ba46a8f0f.jpg to: data/10_whole_foods/train/strawberries/aa07b6f6-2b0d-48df-b4bb-a63ba46a8f0f.jpg Saving resized image from: 10_whole_foods/train/strawberries/21347ed7-25cc-4389-a8f5-4bf10d4fc4e3.jpg to: data/10_whole_foods/train/strawberries/21347ed7-25cc-4389-a8f5-4bf10d4fc4e3.jpg Saving resized image from: 10_whole_foods/train/strawberries/0b83764e-5ac4-44b8-8803-5c8f534d418a.jpg to: data/10_whole_foods/train/strawberries/0b83764e-5ac4-44b8-8803-5c8f534d418a.jpg Saving resized image from: 10_whole_foods/train/strawberries/c604f6bd-e3a5-4e19-93b5-33620238d621.jpg to: data/10_whole_foods/train/strawberries/c604f6bd-e3a5-4e19-93b5-33620238d621.jpg Saving resized image from: 10_whole_foods/train/strawberries/44ab6fe3-debb-4eb1-af35-3d083e16ce76.jpg to: data/10_whole_foods/train/strawberries/44ab6fe3-debb-4eb1-af35-3d083e16ce76.jpg Saving resized image from: 10_whole_foods/train/strawberries/b167a507-a9f0-4f6a-9c58-3b94fd82fc55.jpg to: data/10_whole_foods/train/strawberries/b167a507-a9f0-4f6a-9c58-3b94fd82fc55.jpg Saving resized image from: 10_whole_foods/train/strawberries/a83ce0df-3b9e-4fd4-b3bf-6b49b5d0d7fe.jpg to: data/10_whole_foods/train/strawberries/a83ce0df-3b9e-4fd4-b3bf-6b49b5d0d7fe.jpg Saving resized image from: 10_whole_foods/train/strawberries/913643a0-ce94-40a8-a141-70b9c1f0ca0f.jpg to: data/10_whole_foods/train/strawberries/913643a0-ce94-40a8-a141-70b9c1f0ca0f.jpg Saving resized image from: 10_whole_foods/train/strawberries/68a4750a-a152-40e2-b92e-23b2e01ae98c.jpg to: data/10_whole_foods/train/strawberries/68a4750a-a152-40e2-b92e-23b2e01ae98c.jpg Saving resized image from: 10_whole_foods/train/strawberries/91649cc6-a311-439c-8817-918f7936f994.jpg to: data/10_whole_foods/train/strawberries/91649cc6-a311-439c-8817-918f7936f994.jpg Saving resized image from: 10_whole_foods/train/blueberries/7075a40d-5af3-4e52-be73-dcf535247685.jpg to: data/10_whole_foods/train/blueberries/7075a40d-5af3-4e52-be73-dcf535247685.jpg Saving resized image from: 10_whole_foods/train/blueberries/f7fd45b0-3093-4d04-b404-4e3bb53e54d1.jpg to: data/10_whole_foods/train/blueberries/f7fd45b0-3093-4d04-b404-4e3bb53e54d1.jpg Saving resized image from: 10_whole_foods/train/blueberries/c94502a9-d339-4e5a-9f1c-11999092292a.jpg to: data/10_whole_foods/train/blueberries/c94502a9-d339-4e5a-9f1c-11999092292a.jpg Saving resized image from: 10_whole_foods/train/blueberries/aee23af4-2a23-43f8-9158-70e694476dee.jpg to: data/10_whole_foods/train/blueberries/aee23af4-2a23-43f8-9158-70e694476dee.jpg Saving resized image from: 10_whole_foods/train/blueberries/8217a188-d74a-4c57-b593-9165d39a5deb.jpg to: data/10_whole_foods/train/blueberries/8217a188-d74a-4c57-b593-9165d39a5deb.jpg Saving resized image from: 10_whole_foods/train/blueberries/7aac3c25-75ea-4f4a-98d9-86b2b14eb87b.jpg to: data/10_whole_foods/train/blueberries/7aac3c25-75ea-4f4a-98d9-86b2b14eb87b.jpg Saving resized image from: 10_whole_foods/train/blueberries/f70acf59-c56c-47b9-9414-2c4cf90dbb24.jpg to: data/10_whole_foods/train/blueberries/f70acf59-c56c-47b9-9414-2c4cf90dbb24.jpg Saving resized image from: 10_whole_foods/train/blueberries/cc1c09b2-03eb-4095-b168-04351b4a7bdb.jpg to: data/10_whole_foods/train/blueberries/cc1c09b2-03eb-4095-b168-04351b4a7bdb.jpg Saving resized image from: 10_whole_foods/train/blueberries/87345bd1-2c08-4520-90b1-fad7e78bbe85.jpg to: data/10_whole_foods/train/blueberries/87345bd1-2c08-4520-90b1-fad7e78bbe85.jpg Saving resized image from: 10_whole_foods/train/blueberries/bc0f9710-8adf-4b3e-ba7b-22dfe3c44a6b.jpg to: data/10_whole_foods/train/blueberries/bc0f9710-8adf-4b3e-ba7b-22dfe3c44a6b.jpg Saving resized image from: 10_whole_foods/train/blueberries/63500473-db5e-4f8c-8734-7289f3ecb4e0.jpg to: data/10_whole_foods/train/blueberries/63500473-db5e-4f8c-8734-7289f3ecb4e0.jpg Saving resized image from: 10_whole_foods/train/blueberries/95b49e0d-183d-49c1-b720-6a2a3db867dd.jpg to: data/10_whole_foods/train/blueberries/95b49e0d-183d-49c1-b720-6a2a3db867dd.jpg Saving resized image from: 10_whole_foods/train/blueberries/63a15419-d734-432b-88b9-985b11899cec.jpg to: data/10_whole_foods/train/blueberries/63a15419-d734-432b-88b9-985b11899cec.jpg Saving resized image from: 10_whole_foods/train/blueberries/500c9f8d-06c1-4f24-b721-70eb7eda2f98.jpg to: data/10_whole_foods/train/blueberries/500c9f8d-06c1-4f24-b721-70eb7eda2f98.jpg Saving resized image from: 10_whole_foods/train/blueberries/d9e48e59-6a7a-4946-865b-65190aa095d3.jpg to: data/10_whole_foods/train/blueberries/d9e48e59-6a7a-4946-865b-65190aa095d3.jpg Saving resized image from: 10_whole_foods/train/blueberries/1d265357-b5da-441b-93da-e169c1226612.jpg to: data/10_whole_foods/train/blueberries/1d265357-b5da-441b-93da-e169c1226612.jpg Saving resized image from: 10_whole_foods/train/blueberries/b40cf5f9-08bc-4c4d-8a6c-5dff4a5ac364.jpg to: data/10_whole_foods/train/blueberries/b40cf5f9-08bc-4c4d-8a6c-5dff4a5ac364.jpg Saving resized image from: 10_whole_foods/train/blueberries/6728c049-fc21-438d-8594-4a7fd743772a.jpg to: data/10_whole_foods/train/blueberries/6728c049-fc21-438d-8594-4a7fd743772a.jpg Saving resized image from: 10_whole_foods/train/blueberries/1038301c-3070-4e48-9e01-1c799dc0b17b.jpg to: data/10_whole_foods/train/blueberries/1038301c-3070-4e48-9e01-1c799dc0b17b.jpg Saving resized image from: 10_whole_foods/train/blueberries/8a05d2b2-c5de-46ba-a0ca-5980ad50f146.jpg to: data/10_whole_foods/train/blueberries/8a05d2b2-c5de-46ba-a0ca-5980ad50f146.jpg Saving resized image from: 10_whole_foods/train/blueberries/e3a47c01-50c0-4f42-b2c7-29af0d326824.jpg to: data/10_whole_foods/train/blueberries/e3a47c01-50c0-4f42-b2c7-29af0d326824.jpg Saving resized image from: 10_whole_foods/train/blueberries/d358c24c-0e3b-4dd3-8d1c-a3cec65332d8.jpg to: data/10_whole_foods/train/blueberries/d358c24c-0e3b-4dd3-8d1c-a3cec65332d8.jpg Saving resized image from: 10_whole_foods/train/blueberries/4b1660bf-f931-49b9-9942-b9b1cd7e5efa.jpg to: data/10_whole_foods/train/blueberries/4b1660bf-f931-49b9-9942-b9b1cd7e5efa.jpg Saving resized image from: 10_whole_foods/train/blueberries/3ed35cbe-c4fc-4d1e-b44b-3c52f85b377f.jpg to: data/10_whole_foods/train/blueberries/3ed35cbe-c4fc-4d1e-b44b-3c52f85b377f.jpg Saving resized image from: 10_whole_foods/train/blueberries/3ab8b770-ee37-4dbc-b8df-db137bacf20d.jpg to: data/10_whole_foods/train/blueberries/3ab8b770-ee37-4dbc-b8df-db137bacf20d.jpg Saving resized image from: 10_whole_foods/train/blueberries/1ed0910a-2e5d-4f9c-80c5-fc3675ebcbe0.jpg to: data/10_whole_foods/train/blueberries/1ed0910a-2e5d-4f9c-80c5-fc3675ebcbe0.jpg Saving resized image from: 10_whole_foods/train/blueberries/3a7948a0-3f37-4189-a4eb-b1b94b57de48.jpg to: data/10_whole_foods/train/blueberries/3a7948a0-3f37-4189-a4eb-b1b94b57de48.jpg Saving resized image from: 10_whole_foods/train/blueberries/1fa97a62-1ceb-4771-b57d-eefedfa1bfa3.jpg to: data/10_whole_foods/train/blueberries/1fa97a62-1ceb-4771-b57d-eefedfa1bfa3.jpg Saving resized image from: 10_whole_foods/train/blueberries/f6892879-5617-4b7a-afce-02ef9c96852e.jpg to: data/10_whole_foods/train/blueberries/f6892879-5617-4b7a-afce-02ef9c96852e.jpg Saving resized image from: 10_whole_foods/train/blueberries/0b0557b3-a873-4908-86b9-959c473ab181.jpg to: data/10_whole_foods/train/blueberries/0b0557b3-a873-4908-86b9-959c473ab181.jpg Saving resized image from: 10_whole_foods/train/blueberries/7b81ba02-d276-4664-a6f8-17c2cb1763aa.jpg to: data/10_whole_foods/train/blueberries/7b81ba02-d276-4664-a6f8-17c2cb1763aa.jpg Saving resized image from: 10_whole_foods/train/blueberries/e7de7527-cfe1-40a1-887d-504355ec39fa.jpg to: data/10_whole_foods/train/blueberries/e7de7527-cfe1-40a1-887d-504355ec39fa.jpg Saving resized image from: 10_whole_foods/train/blueberries/169af058-cb22-451a-ac8b-81c5bf042ae1.jpg to: data/10_whole_foods/train/blueberries/169af058-cb22-451a-ac8b-81c5bf042ae1.jpg Saving resized image from: 10_whole_foods/train/blueberries/ea6f47ed-a3ab-4d76-8037-639b42a46575.jpg to: data/10_whole_foods/train/blueberries/ea6f47ed-a3ab-4d76-8037-639b42a46575.jpg Saving resized image from: 10_whole_foods/train/blueberries/5e8436d7-0631-4e01-b0d7-ce1ce1492287.jpg to: data/10_whole_foods/train/blueberries/5e8436d7-0631-4e01-b0d7-ce1ce1492287.jpg Saving resized image from: 10_whole_foods/train/blueberries/6d009249-d189-41dd-81cf-9799f03fe605.jpg to: data/10_whole_foods/train/blueberries/6d009249-d189-41dd-81cf-9799f03fe605.jpg Saving resized image from: 10_whole_foods/train/blueberries/9d8bedcb-906f-4e19-a334-8d38700432b3.jpg to: data/10_whole_foods/train/blueberries/9d8bedcb-906f-4e19-a334-8d38700432b3.jpg Saving resized image from: 10_whole_foods/train/blueberries/4bcfd42f-d422-4aca-8b77-abbcdc9d6b0f.jpg to: data/10_whole_foods/train/blueberries/4bcfd42f-d422-4aca-8b77-abbcdc9d6b0f.jpg Saving resized image from: 10_whole_foods/train/blueberries/eb47a2f1-350f-4c65-b013-0c614d043642.jpg to: data/10_whole_foods/train/blueberries/eb47a2f1-350f-4c65-b013-0c614d043642.jpg Saving resized image from: 10_whole_foods/train/blueberries/9e1fafb9-a63e-4a1f-a79a-7951560b16b7.jpg to: data/10_whole_foods/train/blueberries/9e1fafb9-a63e-4a1f-a79a-7951560b16b7.jpg Saving resized image from: 10_whole_foods/train/blueberries/4612f2e4-7149-4419-b219-531c00e9b2f9.jpg to: data/10_whole_foods/train/blueberries/4612f2e4-7149-4419-b219-531c00e9b2f9.jpg Saving resized image from: 10_whole_foods/train/blueberries/1672194c-6df1-4a58-b430-70d9c01e653e.jpg to: data/10_whole_foods/train/blueberries/1672194c-6df1-4a58-b430-70d9c01e653e.jpg Saving resized image from: 10_whole_foods/train/blueberries/cc13c60c-c5b7-4f8b-ab82-2ac562eab7f5.jpg to: data/10_whole_foods/train/blueberries/cc13c60c-c5b7-4f8b-ab82-2ac562eab7f5.jpg Saving resized image from: 10_whole_foods/train/blueberries/c81babcd-db6c-496e-a968-18910610a18f.jpg to: data/10_whole_foods/train/blueberries/c81babcd-db6c-496e-a968-18910610a18f.jpg Saving resized image from: 10_whole_foods/train/blueberries/b64d5a64-4f19-4070-8c4f-6cf313bc3d53.jpg to: data/10_whole_foods/train/blueberries/b64d5a64-4f19-4070-8c4f-6cf313bc3d53.jpg Saving resized image from: 10_whole_foods/train/blueberries/2713696a-d926-47d8-80b8-ee89526a05b0.jpg to: data/10_whole_foods/train/blueberries/2713696a-d926-47d8-80b8-ee89526a05b0.jpg Saving resized image from: 10_whole_foods/train/blueberries/62612b92-808f-4c68-b45d-fff923afadfb.jpg to: data/10_whole_foods/train/blueberries/62612b92-808f-4c68-b45d-fff923afadfb.jpg Saving resized image from: 10_whole_foods/train/blueberries/80c09736-4800-4b1b-be18-c453fbb64352.jpg to: data/10_whole_foods/train/blueberries/80c09736-4800-4b1b-be18-c453fbb64352.jpg Saving resized image from: 10_whole_foods/train/blueberries/f159f81d-de29-4ac5-8bb2-90f4bb6de81b.jpg to: data/10_whole_foods/train/blueberries/f159f81d-de29-4ac5-8bb2-90f4bb6de81b.jpg Saving resized image from: 10_whole_foods/train/blueberries/aa4d3fb5-65cc-4958-8b56-5614ab8502a3.jpg to: data/10_whole_foods/train/blueberries/aa4d3fb5-65cc-4958-8b56-5614ab8502a3.jpg Saving resized image from: 10_whole_foods/train/blueberries/2fc74a4d-18e0-427c-9b02-5cec57535f08.jpg to: data/10_whole_foods/train/blueberries/2fc74a4d-18e0-427c-9b02-5cec57535f08.jpg Saving resized image from: 10_whole_foods/train/blueberries/d08b58f1-d8ad-459f-a6b8-e02a3dab0cd7.jpg to: data/10_whole_foods/train/blueberries/d08b58f1-d8ad-459f-a6b8-e02a3dab0cd7.jpg Saving resized image from: 10_whole_foods/train/blueberries/5bc02724-97d3-4e97-a737-df7c2196fdfb.jpg to: data/10_whole_foods/train/blueberries/5bc02724-97d3-4e97-a737-df7c2196fdfb.jpg Saving resized image from: 10_whole_foods/train/blueberries/148b6765-f843-4247-8ae4-5ab40993420e.jpg to: data/10_whole_foods/train/blueberries/148b6765-f843-4247-8ae4-5ab40993420e.jpg Saving resized image from: 10_whole_foods/train/blueberries/de1a310d-6609-47dd-aa47-b5ac3516c68f.jpg to: data/10_whole_foods/train/blueberries/de1a310d-6609-47dd-aa47-b5ac3516c68f.jpg Saving resized image from: 10_whole_foods/train/blueberries/bc946fad-af72-473a-9027-cbc05c6877ae.jpg to: data/10_whole_foods/train/blueberries/bc946fad-af72-473a-9027-cbc05c6877ae.jpg Saving resized image from: 10_whole_foods/train/blueberries/a5245f13-dd59-41fd-b276-dde9721c1aaf.jpg to: data/10_whole_foods/train/blueberries/a5245f13-dd59-41fd-b276-dde9721c1aaf.jpg Saving resized image from: 10_whole_foods/train/blueberries/d7f28328-4aa2-4fe0-8cab-3f1f73048c80.jpg to: data/10_whole_foods/train/blueberries/d7f28328-4aa2-4fe0-8cab-3f1f73048c80.jpg Saving resized image from: 10_whole_foods/train/blueberries/e08e3de4-7319-42d7-823f-c5cb84ed7ff6.jpg to: data/10_whole_foods/train/blueberries/e08e3de4-7319-42d7-823f-c5cb84ed7ff6.jpg Saving resized image from: 10_whole_foods/train/banana/b1f0b833-58f8-413c-a425-ac2122d3dada.jpg to: data/10_whole_foods/train/banana/b1f0b833-58f8-413c-a425-ac2122d3dada.jpg Saving resized image from: 10_whole_foods/train/banana/d241320a-95e0-4e88-a1da-d341723ba1e8.jpg to: data/10_whole_foods/train/banana/d241320a-95e0-4e88-a1da-d341723ba1e8.jpg Saving resized image from: 10_whole_foods/train/banana/e3bf4732-dda4-4a42-8ff8-5b2f8845bf2c.jpg to: data/10_whole_foods/train/banana/e3bf4732-dda4-4a42-8ff8-5b2f8845bf2c.jpg Saving resized image from: 10_whole_foods/train/banana/e843eed9-d0b9-4117-b9f7-826e0a85a728.jpg to: data/10_whole_foods/train/banana/e843eed9-d0b9-4117-b9f7-826e0a85a728.jpg Saving resized image from: 10_whole_foods/train/banana/3b2bcfaa-aa03-488f-847d-b7479ca905e1.jpg to: data/10_whole_foods/train/banana/3b2bcfaa-aa03-488f-847d-b7479ca905e1.jpg Saving resized image from: 10_whole_foods/train/banana/0354d063-caf5-4c6f-b2e3-e92c004e07cc.jpg to: data/10_whole_foods/train/banana/0354d063-caf5-4c6f-b2e3-e92c004e07cc.jpg Saving resized image from: 10_whole_foods/train/banana/5b501a34-1779-4365-8181-37ac4e630b67.jpg to: data/10_whole_foods/train/banana/5b501a34-1779-4365-8181-37ac4e630b67.jpg Saving resized image from: 10_whole_foods/train/banana/34d60cab-143a-4234-83c0-720104b82451.jpg to: data/10_whole_foods/train/banana/34d60cab-143a-4234-83c0-720104b82451.jpg Saving resized image from: 10_whole_foods/train/banana/a29584f3-013c-4fef-b163-31bbf7904e94.jpg to: data/10_whole_foods/train/banana/a29584f3-013c-4fef-b163-31bbf7904e94.jpg Saving resized image from: 10_whole_foods/train/banana/b66779da-f143-4b7e-839c-e356e13fb87d.jpg to: data/10_whole_foods/train/banana/b66779da-f143-4b7e-839c-e356e13fb87d.jpg Saving resized image from: 10_whole_foods/train/banana/ee264d9d-2177-43ae-8e7b-1cf502bb917d.jpg to: data/10_whole_foods/train/banana/ee264d9d-2177-43ae-8e7b-1cf502bb917d.jpg Saving resized image from: 10_whole_foods/train/banana/afa610d0-93f8-4257-86b8-b1ee4ff41768.jpg to: data/10_whole_foods/train/banana/afa610d0-93f8-4257-86b8-b1ee4ff41768.jpg Saving resized image from: 10_whole_foods/train/banana/aaeca2e4-a4a5-431b-8156-f63ec17bbe73.jpg to: data/10_whole_foods/train/banana/aaeca2e4-a4a5-431b-8156-f63ec17bbe73.jpg Saving resized image from: 10_whole_foods/train/banana/1f89e4a2-ba9c-42e4-8ca4-345c2cec36e6.jpg to: data/10_whole_foods/train/banana/1f89e4a2-ba9c-42e4-8ca4-345c2cec36e6.jpg Saving resized image from: 10_whole_foods/train/banana/5145dd29-e13b-4cde-af80-e986019454e1.jpg to: data/10_whole_foods/train/banana/5145dd29-e13b-4cde-af80-e986019454e1.jpg Saving resized image from: 10_whole_foods/train/banana/19babefb-24ee-49f5-82e2-3dd412aed615.jpg to: data/10_whole_foods/train/banana/19babefb-24ee-49f5-82e2-3dd412aed615.jpg Saving resized image from: 10_whole_foods/train/banana/c6b750fa-b235-4531-9da6-81bacb71b32b.jpg to: data/10_whole_foods/train/banana/c6b750fa-b235-4531-9da6-81bacb71b32b.jpg Saving resized image from: 10_whole_foods/train/banana/7376a048-9f9a-46eb-81bb-94b887b4596d.jpg to: data/10_whole_foods/train/banana/7376a048-9f9a-46eb-81bb-94b887b4596d.jpg Saving resized image from: 10_whole_foods/train/banana/aefa2463-d577-4b42-aea9-fd3195237207.jpg to: data/10_whole_foods/train/banana/aefa2463-d577-4b42-aea9-fd3195237207.jpg Saving resized image from: 10_whole_foods/train/banana/aea34b00-8d68-4dfa-a580-8fc95f0ddd1b.jpg to: data/10_whole_foods/train/banana/aea34b00-8d68-4dfa-a580-8fc95f0ddd1b.jpg Saving resized image from: 10_whole_foods/train/banana/e93acc29-6221-484b-892d-105f5df331a3.jpg to: data/10_whole_foods/train/banana/e93acc29-6221-484b-892d-105f5df331a3.jpg Saving resized image from: 10_whole_foods/train/banana/19a943ec-1bed-474b-bc37-b8132cd0e608.jpg to: data/10_whole_foods/train/banana/19a943ec-1bed-474b-bc37-b8132cd0e608.jpg Saving resized image from: 10_whole_foods/train/banana/372b8fd4-07f8-4744-b4a2-08736c9b82e9.jpg to: data/10_whole_foods/train/banana/372b8fd4-07f8-4744-b4a2-08736c9b82e9.jpg Saving resized image from: 10_whole_foods/train/banana/88fcd569-1191-4932-85ff-74dfde57dbfd.jpg to: data/10_whole_foods/train/banana/88fcd569-1191-4932-85ff-74dfde57dbfd.jpg Saving resized image from: 10_whole_foods/train/banana/4856f335-d642-4eb9-bd95-de1922ddd656.jpg to: data/10_whole_foods/train/banana/4856f335-d642-4eb9-bd95-de1922ddd656.jpg Saving resized image from: 10_whole_foods/train/banana/6bbd869d-8236-45a7-a3f1-60d1da8886c0.jpg to: data/10_whole_foods/train/banana/6bbd869d-8236-45a7-a3f1-60d1da8886c0.jpg Saving resized image from: 10_whole_foods/train/banana/67afa30d-f04f-4a8d-b5b3-ae867ee7e831.jpg to: data/10_whole_foods/train/banana/67afa30d-f04f-4a8d-b5b3-ae867ee7e831.jpg Saving resized image from: 10_whole_foods/train/banana/d3db1b9b-55bd-49b6-ba6f-b738c17baa22.jpg to: data/10_whole_foods/train/banana/d3db1b9b-55bd-49b6-ba6f-b738c17baa22.jpg Saving resized image from: 10_whole_foods/train/banana/8c6c3a24-067f-401b-806f-a6ead602b628.jpg to: data/10_whole_foods/train/banana/8c6c3a24-067f-401b-806f-a6ead602b628.jpg Saving resized image from: 10_whole_foods/train/banana/7b1835c1-76ba-4eac-baa0-07dfbe4943b3.jpg to: data/10_whole_foods/train/banana/7b1835c1-76ba-4eac-baa0-07dfbe4943b3.jpg Saving resized image from: 10_whole_foods/train/banana/0dd60423-9ac5-4641-a8f0-15e2d057b478.jpg to: data/10_whole_foods/train/banana/0dd60423-9ac5-4641-a8f0-15e2d057b478.jpg Saving resized image from: 10_whole_foods/train/banana/890be757-9500-4509-ab51-deee63e44f3a.jpg to: data/10_whole_foods/train/banana/890be757-9500-4509-ab51-deee63e44f3a.jpg Saving resized image from: 10_whole_foods/train/banana/6ef0c4bb-564c-4dbe-992c-839b1bc8801d.jpg to: data/10_whole_foods/train/banana/6ef0c4bb-564c-4dbe-992c-839b1bc8801d.jpg Saving resized image from: 10_whole_foods/train/banana/cf455b5f-ec26-4b50-8635-c391482770ee.jpg to: data/10_whole_foods/train/banana/cf455b5f-ec26-4b50-8635-c391482770ee.jpg Saving resized image from: 10_whole_foods/train/banana/cf55d855-7ce6-4505-8969-441f7f270998.jpg to: data/10_whole_foods/train/banana/cf55d855-7ce6-4505-8969-441f7f270998.jpg Saving resized image from: 10_whole_foods/train/banana/10909a2c-2727-4349-8ce1-378aa346474f.jpg to: data/10_whole_foods/train/banana/10909a2c-2727-4349-8ce1-378aa346474f.jpg Saving resized image from: 10_whole_foods/train/banana/95e5196b-188b-47c5-8e44-41636bf6b4b0.jpg to: data/10_whole_foods/train/banana/95e5196b-188b-47c5-8e44-41636bf6b4b0.jpg Saving resized image from: 10_whole_foods/train/banana/eee0afef-1b15-456b-a16a-517a6dd07a35.jpg to: data/10_whole_foods/train/banana/eee0afef-1b15-456b-a16a-517a6dd07a35.jpg Saving resized image from: 10_whole_foods/train/banana/f6e21179-765f-4293-b653-ea9ae8487d35.jpg to: data/10_whole_foods/train/banana/f6e21179-765f-4293-b653-ea9ae8487d35.jpg Saving resized image from: 10_whole_foods/train/banana/4daac830-be3a-4cfb-930b-7900c350d21c.jpg to: data/10_whole_foods/train/banana/4daac830-be3a-4cfb-930b-7900c350d21c.jpg Saving resized image from: 10_whole_foods/train/banana/cdd5e7b9-352a-47b3-bf70-7189446bc89e.jpg to: data/10_whole_foods/train/banana/cdd5e7b9-352a-47b3-bf70-7189446bc89e.jpg Saving resized image from: 10_whole_foods/train/banana/36afae0b-0080-4c90-9a89-216c89f41955.jpg to: data/10_whole_foods/train/banana/36afae0b-0080-4c90-9a89-216c89f41955.jpg Saving resized image from: 10_whole_foods/train/banana/a92cca12-99e3-456e-9637-470e6e50f508.jpg to: data/10_whole_foods/train/banana/a92cca12-99e3-456e-9637-470e6e50f508.jpg Saving resized image from: 10_whole_foods/train/banana/05bfd7ee-f221-4bd4-96c8-13f7faea4e8c.jpg to: data/10_whole_foods/train/banana/05bfd7ee-f221-4bd4-96c8-13f7faea4e8c.jpg Saving resized image from: 10_whole_foods/train/banana/5cc5eef6-bab4-49a4-a887-5d9d480ba882.jpg to: data/10_whole_foods/train/banana/5cc5eef6-bab4-49a4-a887-5d9d480ba882.jpg Saving resized image from: 10_whole_foods/train/banana/818f9f1a-cb10-440a-ac02-c960a5bf7a82.jpg to: data/10_whole_foods/train/banana/818f9f1a-cb10-440a-ac02-c960a5bf7a82.jpg Saving resized image from: 10_whole_foods/train/banana/d4753932-c587-4faa-9795-4e6b0b120360.jpg to: data/10_whole_foods/train/banana/d4753932-c587-4faa-9795-4e6b0b120360.jpg Saving resized image from: 10_whole_foods/train/banana/8f43c388-302e-44a0-b27a-d6649fd891be.jpg to: data/10_whole_foods/train/banana/8f43c388-302e-44a0-b27a-d6649fd891be.jpg Saving resized image from: 10_whole_foods/train/banana/e394a984-0ac5-484b-b30f-922034a03acd.jpg to: data/10_whole_foods/train/banana/e394a984-0ac5-484b-b30f-922034a03acd.jpg Saving resized image from: 10_whole_foods/train/banana/a5fafbc7-a922-4c99-a09b-bf97f91a46ae.jpg to: data/10_whole_foods/train/banana/a5fafbc7-a922-4c99-a09b-bf97f91a46ae.jpg Saving resized image from: 10_whole_foods/train/banana/565ecf02-3b30-4e86-97f9-864920cc6361.jpg to: data/10_whole_foods/train/banana/565ecf02-3b30-4e86-97f9-864920cc6361.jpg Saving resized image from: 10_whole_foods/train/banana/07b640b1-5a18-4531-ac4d-474a29e5930d.jpg to: data/10_whole_foods/train/banana/07b640b1-5a18-4531-ac4d-474a29e5930d.jpg Saving resized image from: 10_whole_foods/train/banana/bc143685-c27d-4e99-9d22-54b681cd1fbe.jpg to: data/10_whole_foods/train/banana/bc143685-c27d-4e99-9d22-54b681cd1fbe.jpg Saving resized image from: 10_whole_foods/train/banana/ffbe5b3e-455a-4d9c-a5f0-5f2ca66ecadf.jpg to: data/10_whole_foods/train/banana/ffbe5b3e-455a-4d9c-a5f0-5f2ca66ecadf.jpg Saving resized image from: 10_whole_foods/train/banana/52e980b2-0c99-41d9-b94b-e51a9c8c3510.jpg to: data/10_whole_foods/train/banana/52e980b2-0c99-41d9-b94b-e51a9c8c3510.jpg Saving resized image from: 10_whole_foods/train/banana/6d3f3c4e-18aa-4374-81a1-b46d3c57a7f9.jpg to: data/10_whole_foods/train/banana/6d3f3c4e-18aa-4374-81a1-b46d3c57a7f9.jpg Saving resized image from: 10_whole_foods/train/banana/a5b5898e-8ceb-4101-8c61-87b26463ef3e.jpg to: data/10_whole_foods/train/banana/a5b5898e-8ceb-4101-8c61-87b26463ef3e.jpg Saving resized image from: 10_whole_foods/train/banana/68c87a38-39d4-4dac-8e6b-96a106bf3ee4.jpg to: data/10_whole_foods/train/banana/68c87a38-39d4-4dac-8e6b-96a106bf3ee4.jpg Saving resized image from: 10_whole_foods/train/beef/07cbc113-1439-4ce8-a8dc-077b74943c8e.jpg to: data/10_whole_foods/train/beef/07cbc113-1439-4ce8-a8dc-077b74943c8e.jpg Saving resized image from: 10_whole_foods/train/beef/fef95c0e-51e1-4c20-8226-6b908da3c8d3.jpg to: data/10_whole_foods/train/beef/fef95c0e-51e1-4c20-8226-6b908da3c8d3.jpg Saving resized image from: 10_whole_foods/train/beef/8b456d92-3f39-415b-8f02-d98698cc7ee4.jpg to: data/10_whole_foods/train/beef/8b456d92-3f39-415b-8f02-d98698cc7ee4.jpg Saving resized image from: 10_whole_foods/train/beef/24c6032c-0f3f-445a-97af-7c083d7cf3df.jpg to: data/10_whole_foods/train/beef/24c6032c-0f3f-445a-97af-7c083d7cf3df.jpg Saving resized image from: 10_whole_foods/train/beef/b7d78acc-5d8c-411c-9317-e3ef9d1a082d.jpg to: data/10_whole_foods/train/beef/b7d78acc-5d8c-411c-9317-e3ef9d1a082d.jpg Saving resized image from: 10_whole_foods/train/beef/c0a46db7-c59c-47ba-867d-1d89a0e705c5.jpg to: data/10_whole_foods/train/beef/c0a46db7-c59c-47ba-867d-1d89a0e705c5.jpg Saving resized image from: 10_whole_foods/train/beef/2e4f05ac-0678-4a4f-99cb-64b107256572.jpg to: data/10_whole_foods/train/beef/2e4f05ac-0678-4a4f-99cb-64b107256572.jpg Saving resized image from: 10_whole_foods/train/beef/1a863c13-9c14-47a4-8497-f24dedf5e07a.jpg to: data/10_whole_foods/train/beef/1a863c13-9c14-47a4-8497-f24dedf5e07a.jpg Saving resized image from: 10_whole_foods/train/beef/362471b3-801e-482f-8c8c-9e33e021a20c.jpg to: data/10_whole_foods/train/beef/362471b3-801e-482f-8c8c-9e33e021a20c.jpg Saving resized image from: 10_whole_foods/train/beef/75b7fdfc-290c-48d7-9cb3-ff1fb3e1c856.jpg to: data/10_whole_foods/train/beef/75b7fdfc-290c-48d7-9cb3-ff1fb3e1c856.jpg Saving resized image from: 10_whole_foods/train/beef/35edeace-f3db-4cb6-8a03-580318543f57.jpg to: data/10_whole_foods/train/beef/35edeace-f3db-4cb6-8a03-580318543f57.jpg Saving resized image from: 10_whole_foods/train/beef/3f91451a-575d-4637-89ce-0cbb4895949c.jpg to: data/10_whole_foods/train/beef/3f91451a-575d-4637-89ce-0cbb4895949c.jpg Saving resized image from: 10_whole_foods/train/beef/ec21dd1d-0643-4f90-8f92-b622930575bb.jpg to: data/10_whole_foods/train/beef/ec21dd1d-0643-4f90-8f92-b622930575bb.jpg Saving resized image from: 10_whole_foods/train/beef/cb3f63d7-0b1f-4de5-9952-8433df9ef895.jpg to: data/10_whole_foods/train/beef/cb3f63d7-0b1f-4de5-9952-8433df9ef895.jpg Saving resized image from: 10_whole_foods/train/beef/eb195b4d-7ac4-43ae-9cae-06b71583f21d.jpg to: data/10_whole_foods/train/beef/eb195b4d-7ac4-43ae-9cae-06b71583f21d.jpg Saving resized image from: 10_whole_foods/train/beef/5b8b94c0-651e-4e0d-84cc-f18d651799bb.jpg to: data/10_whole_foods/train/beef/5b8b94c0-651e-4e0d-84cc-f18d651799bb.jpg Saving resized image from: 10_whole_foods/train/beef/6f952334-34b9-4394-838d-f21d2419687c.jpg to: data/10_whole_foods/train/beef/6f952334-34b9-4394-838d-f21d2419687c.jpg Saving resized image from: 10_whole_foods/train/beef/d3f068e3-6c0e-41e9-a48c-86057416a9b6.jpg to: data/10_whole_foods/train/beef/d3f068e3-6c0e-41e9-a48c-86057416a9b6.jpg Saving resized image from: 10_whole_foods/train/beef/cdc860d7-4af2-4a8b-8186-188bd59ea251.jpg to: data/10_whole_foods/train/beef/cdc860d7-4af2-4a8b-8186-188bd59ea251.jpg Saving resized image from: 10_whole_foods/train/beef/c1acecb0-83fc-418a-a31f-cd1403fad8bc.jpg to: data/10_whole_foods/train/beef/c1acecb0-83fc-418a-a31f-cd1403fad8bc.jpg Saving resized image from: 10_whole_foods/train/beef/4349473d-1876-4396-8b10-1f43d63fe85f.jpg to: data/10_whole_foods/train/beef/4349473d-1876-4396-8b10-1f43d63fe85f.jpg Saving resized image from: 10_whole_foods/train/beef/2b5998b3-fa0e-479e-943d-102c9a89955b.jpg to: data/10_whole_foods/train/beef/2b5998b3-fa0e-479e-943d-102c9a89955b.jpg Saving resized image from: 10_whole_foods/train/beef/67a57d9f-e522-4f89-a830-b28a3c4cc081.jpg to: data/10_whole_foods/train/beef/67a57d9f-e522-4f89-a830-b28a3c4cc081.jpg Saving resized image from: 10_whole_foods/train/beef/5267b62d-1af8-4b31-803f-56fcdf877434.jpg to: data/10_whole_foods/train/beef/5267b62d-1af8-4b31-803f-56fcdf877434.jpg Saving resized image from: 10_whole_foods/train/beef/03fb86c3-2a4f-4f36-97cb-afee7272ae0c.jpg to: data/10_whole_foods/train/beef/03fb86c3-2a4f-4f36-97cb-afee7272ae0c.jpg Saving resized image from: 10_whole_foods/train/beef/95d29e32-0852-424c-814a-61056bc968b1.jpg to: data/10_whole_foods/train/beef/95d29e32-0852-424c-814a-61056bc968b1.jpg Saving resized image from: 10_whole_foods/train/beef/04eb6cab-81ba-461c-82b6-0a52f25dff2a.jpg to: data/10_whole_foods/train/beef/04eb6cab-81ba-461c-82b6-0a52f25dff2a.jpg Saving resized image from: 10_whole_foods/train/beef/49f945a0-47a7-4a07-a0fa-756d459cbd88.jpg to: data/10_whole_foods/train/beef/49f945a0-47a7-4a07-a0fa-756d459cbd88.jpg Saving resized image from: 10_whole_foods/train/beef/f591bf5f-67e4-4f45-9785-35f6e751ef9c.jpg to: data/10_whole_foods/train/beef/f591bf5f-67e4-4f45-9785-35f6e751ef9c.jpg Saving resized image from: 10_whole_foods/train/beef/2be8c80c-2cec-4a62-bc0d-e37faf321dbe.jpg to: data/10_whole_foods/train/beef/2be8c80c-2cec-4a62-bc0d-e37faf321dbe.jpg Saving resized image from: 10_whole_foods/train/beef/d7b8f148-08c6-45a6-beea-8854fd6d4adb.jpg to: data/10_whole_foods/train/beef/d7b8f148-08c6-45a6-beea-8854fd6d4adb.jpg Saving resized image from: 10_whole_foods/train/beef/63c83ec6-fe6c-49e5-bf72-e28d6573e4b8.jpg to: data/10_whole_foods/train/beef/63c83ec6-fe6c-49e5-bf72-e28d6573e4b8.jpg Saving resized image from: 10_whole_foods/train/beef/59895e83-90dc-45f7-bcfa-046be985b3ea.jpg to: data/10_whole_foods/train/beef/59895e83-90dc-45f7-bcfa-046be985b3ea.jpg Saving resized image from: 10_whole_foods/train/beef/fe74d607-bf77-4d6d-846c-29cf89e20748.jpg to: data/10_whole_foods/train/beef/fe74d607-bf77-4d6d-846c-29cf89e20748.jpg Saving resized image from: 10_whole_foods/train/beef/8838e828-ab49-4825-80b5-2c57a6b61f38.jpg to: data/10_whole_foods/train/beef/8838e828-ab49-4825-80b5-2c57a6b61f38.jpg Saving resized image from: 10_whole_foods/train/beef/70c323cf-c9f0-4e60-a74d-2052bd7a51cc.jpg to: data/10_whole_foods/train/beef/70c323cf-c9f0-4e60-a74d-2052bd7a51cc.jpg Saving resized image from: 10_whole_foods/train/beef/9a0183df-4314-4a34-b2fd-be82efcb456a.jpg to: data/10_whole_foods/train/beef/9a0183df-4314-4a34-b2fd-be82efcb456a.jpg Saving resized image from: 10_whole_foods/train/beef/ee89daa8-fd3d-4a1d-87bd-dfc6b3c8d261.jpg to: data/10_whole_foods/train/beef/ee89daa8-fd3d-4a1d-87bd-dfc6b3c8d261.jpg Saving resized image from: 10_whole_foods/train/beef/b67e258b-4b08-4212-9e67-03e3e8318df0.jpg to: data/10_whole_foods/train/beef/b67e258b-4b08-4212-9e67-03e3e8318df0.jpg Saving resized image from: 10_whole_foods/train/beef/61c51381-ac91-4304-8e3a-7a42f6c4ab89.jpg to: data/10_whole_foods/train/beef/61c51381-ac91-4304-8e3a-7a42f6c4ab89.jpg Saving resized image from: 10_whole_foods/train/beef/416d1634-e944-4684-a9c5-5b28d4937b07.jpg to: data/10_whole_foods/train/beef/416d1634-e944-4684-a9c5-5b28d4937b07.jpg Saving resized image from: 10_whole_foods/train/beef/4b6e8d07-718a-4c6f-9d4d-db85a6484e35.jpg to: data/10_whole_foods/train/beef/4b6e8d07-718a-4c6f-9d4d-db85a6484e35.jpg Saving resized image from: 10_whole_foods/train/beef/c83d0730-2f70-4f2a-8824-89f6976f9b6f.jpg to: data/10_whole_foods/train/beef/c83d0730-2f70-4f2a-8824-89f6976f9b6f.jpg Saving resized image from: 10_whole_foods/train/beef/554faab0-48e3-4529-871b-a396e598b8d4.jpg to: data/10_whole_foods/train/beef/554faab0-48e3-4529-871b-a396e598b8d4.jpg Saving resized image from: 10_whole_foods/train/beef/e1464492-31d8-4f11-9bf3-3390465794de.jpg to: data/10_whole_foods/train/beef/e1464492-31d8-4f11-9bf3-3390465794de.jpg Saving resized image from: 10_whole_foods/train/beef/4a91ab28-54ef-4843-958c-b745ba116b86.jpg to: data/10_whole_foods/train/beef/4a91ab28-54ef-4843-958c-b745ba116b86.jpg Saving resized image from: 10_whole_foods/train/beef/79d128d9-c6d1-4955-bf5d-0cde59f52b4a.jpg to: data/10_whole_foods/train/beef/79d128d9-c6d1-4955-bf5d-0cde59f52b4a.jpg Saving resized image from: 10_whole_foods/train/beef/dc35d908-c516-494a-97a5-ba8d9b59d568.jpg to: data/10_whole_foods/train/beef/dc35d908-c516-494a-97a5-ba8d9b59d568.jpg Saving resized image from: 10_whole_foods/train/beef/6caf86b4-c99d-4b22-8dd8-13e64eeacea7.jpg to: data/10_whole_foods/train/beef/6caf86b4-c99d-4b22-8dd8-13e64eeacea7.jpg Saving resized image from: 10_whole_foods/train/beef/c05c3f4d-0c6c-4b11-8851-f047d8a73961.jpg to: data/10_whole_foods/train/beef/c05c3f4d-0c6c-4b11-8851-f047d8a73961.jpg Saving resized image from: 10_whole_foods/train/beef/86e78330-5749-40a6-8bb7-4cd6dde893c3.jpg to: data/10_whole_foods/train/beef/86e78330-5749-40a6-8bb7-4cd6dde893c3.jpg Saving resized image from: 10_whole_foods/train/beef/64e2e61b-b379-4f97-87b8-ab240b1f6c00.jpg to: data/10_whole_foods/train/beef/64e2e61b-b379-4f97-87b8-ab240b1f6c00.jpg Saving resized image from: 10_whole_foods/train/beef/b322db29-c8a5-44c7-a45e-1fdc3db9a54d.jpg to: data/10_whole_foods/train/beef/b322db29-c8a5-44c7-a45e-1fdc3db9a54d.jpg Saving resized image from: 10_whole_foods/train/beef/d3e6f269-34ca-404c-b609-33fa0fd95d8a.jpg to: data/10_whole_foods/train/beef/d3e6f269-34ca-404c-b609-33fa0fd95d8a.jpg Saving resized image from: 10_whole_foods/train/beef/6a3567cb-c175-432f-b8c7-5518b1c91d95.jpg to: data/10_whole_foods/train/beef/6a3567cb-c175-432f-b8c7-5518b1c91d95.jpg Saving resized image from: 10_whole_foods/train/beef/0e1f0ae0-a35a-45c1-b5ac-a5cab3c2fbf5.jpg to: data/10_whole_foods/train/beef/0e1f0ae0-a35a-45c1-b5ac-a5cab3c2fbf5.jpg Saving resized image from: 10_whole_foods/train/beef/5e05cee2-d444-4da2-9c2a-1f0dbbb679de.jpg to: data/10_whole_foods/train/beef/5e05cee2-d444-4da2-9c2a-1f0dbbb679de.jpg Saving resized image from: 10_whole_foods/train/beef/7f61502f-6d96-45ba-b5f9-1d435b1a073e.jpg to: data/10_whole_foods/train/beef/7f61502f-6d96-45ba-b5f9-1d435b1a073e.jpg Saving resized image from: 10_whole_foods/train/beef/92f17476-2fc3-41be-8e08-54e9ac85b38e.jpg to: data/10_whole_foods/train/beef/92f17476-2fc3-41be-8e08-54e9ac85b38e.jpg Saving resized image from: 10_whole_foods/train/beef/ec0dad38-79b1-43b4-8717-2679dbf0496b.jpg to: data/10_whole_foods/train/beef/ec0dad38-79b1-43b4-8717-2679dbf0496b.jpg Saving resized image from: 10_whole_foods/train/beef/59be766c-8d4a-4657-9bcd-ceb6f48359a1.jpg to: data/10_whole_foods/train/beef/59be766c-8d4a-4657-9bcd-ceb6f48359a1.jpg Saving resized image from: 10_whole_foods/train/beef/05cb6c44-72e2-473a-9b1d-d55d9f7b400c.jpg to: data/10_whole_foods/train/beef/05cb6c44-72e2-473a-9b1d-d55d9f7b400c.jpg Saving resized image from: 10_whole_foods/train/beef/184676e3-670d-4a59-8737-dcfd0a01d081.jpg to: data/10_whole_foods/train/beef/184676e3-670d-4a59-8737-dcfd0a01d081.jpg Saving resized image from: 10_whole_foods/train/beef/de99a659-84c1-4ec8-83a5-2428bfd88820.jpg to: data/10_whole_foods/train/beef/de99a659-84c1-4ec8-83a5-2428bfd88820.jpg Saving resized image from: 10_whole_foods/train/beef/7b1821ef-8182-4282-8d71-6eb03911539d.jpg to: data/10_whole_foods/train/beef/7b1821ef-8182-4282-8d71-6eb03911539d.jpg Saving resized image from: 10_whole_foods/train/beef/01113352-aef7-4d26-863c-83c1f5c95042.jpg to: data/10_whole_foods/train/beef/01113352-aef7-4d26-863c-83c1f5c95042.jpg Saving resized image from: 10_whole_foods/train/beef/bdad9ca3-b399-441b-bfa2-a62fe24087c7.jpg to: data/10_whole_foods/train/beef/bdad9ca3-b399-441b-bfa2-a62fe24087c7.jpg Saving resized image from: 10_whole_foods/train/beef/b8b117bb-4088-47c6-a098-4a4fb22ff0eb.jpg to: data/10_whole_foods/train/beef/b8b117bb-4088-47c6-a098-4a4fb22ff0eb.jpg Saving resized image from: 10_whole_foods/train/beef/f7f0ce88-dbbb-49de-9833-5705ebe1bfa0.jpg to: data/10_whole_foods/train/beef/f7f0ce88-dbbb-49de-9833-5705ebe1bfa0.jpg Saving resized image from: 10_whole_foods/train/beef/9eb42fd7-7ff7-4b69-87f0-2ee20ee9a277.jpg to: data/10_whole_foods/train/beef/9eb42fd7-7ff7-4b69-87f0-2ee20ee9a277.jpg Saving resized image from: 10_whole_foods/train/beef/1f0e5dbd-76a9-48f8-8d27-7bb461b082a5.jpg to: data/10_whole_foods/train/beef/1f0e5dbd-76a9-48f8-8d27-7bb461b082a5.jpg Saving resized image from: 10_whole_foods/train/beef/f120d3d0-8a77-4ba2-a422-8cff899ad1d4.jpg to: data/10_whole_foods/train/beef/f120d3d0-8a77-4ba2-a422-8cff899ad1d4.jpg Saving resized image from: 10_whole_foods/train/beef/633481a0-8223-4d1d-925d-d72c97abe942.jpg to: data/10_whole_foods/train/beef/633481a0-8223-4d1d-925d-d72c97abe942.jpg Saving resized image from: 10_whole_foods/train/beef/49e1ce98-1273-4077-a269-f527f37767bc.jpg to: data/10_whole_foods/train/beef/49e1ce98-1273-4077-a269-f527f37767bc.jpg Saving resized image from: 10_whole_foods/train/egg/df4cdfa6-9deb-4275-9978-3826a2173fa4.jpg to: data/10_whole_foods/train/egg/df4cdfa6-9deb-4275-9978-3826a2173fa4.jpg Saving resized image from: 10_whole_foods/train/egg/ef2a3a8b-aa91-401b-993c-4570d62aacbf.jpg to: data/10_whole_foods/train/egg/ef2a3a8b-aa91-401b-993c-4570d62aacbf.jpg Saving resized image from: 10_whole_foods/train/egg/99945207-59c2-4370-a764-5cb50d222892.jpg to: data/10_whole_foods/train/egg/99945207-59c2-4370-a764-5cb50d222892.jpg Saving resized image from: 10_whole_foods/train/egg/14fdec13-d06a-4c41-a674-b5f6d222ac1a.jpg to: data/10_whole_foods/train/egg/14fdec13-d06a-4c41-a674-b5f6d222ac1a.jpg Saving resized image from: 10_whole_foods/train/egg/ecfa2ca5-63e2-4d5a-afc6-f89a83d060e6.jpg to: data/10_whole_foods/train/egg/ecfa2ca5-63e2-4d5a-afc6-f89a83d060e6.jpg Saving resized image from: 10_whole_foods/train/egg/1ba8ddf0-ac86-4243-abbc-e1e4ce6961ae.jpg to: data/10_whole_foods/train/egg/1ba8ddf0-ac86-4243-abbc-e1e4ce6961ae.jpg Saving resized image from: 10_whole_foods/train/egg/50617ee6-8aa1-4cf5-9b96-4a3bb7bec8c2.jpg to: data/10_whole_foods/train/egg/50617ee6-8aa1-4cf5-9b96-4a3bb7bec8c2.jpg Saving resized image from: 10_whole_foods/train/egg/3ff1af80-d6f6-4e05-9a45-71ed3a1bcb2b.jpg to: data/10_whole_foods/train/egg/3ff1af80-d6f6-4e05-9a45-71ed3a1bcb2b.jpg Saving resized image from: 10_whole_foods/train/egg/7288db55-1d69-451c-9320-376ffa002531.jpg to: data/10_whole_foods/train/egg/7288db55-1d69-451c-9320-376ffa002531.jpg Saving resized image from: 10_whole_foods/train/egg/a8af5ff7-95a7-4ff5-8d87-8d5c71d3f1c8.jpg to: data/10_whole_foods/train/egg/a8af5ff7-95a7-4ff5-8d87-8d5c71d3f1c8.jpg Saving resized image from: 10_whole_foods/train/egg/0f25c46f-048c-44cf-b070-84d4a5bfcc94.jpg to: data/10_whole_foods/train/egg/0f25c46f-048c-44cf-b070-84d4a5bfcc94.jpg Saving resized image from: 10_whole_foods/train/egg/fb9c31fc-9f7e-4d4a-98a5-b0d09aba580a.jpg to: data/10_whole_foods/train/egg/fb9c31fc-9f7e-4d4a-98a5-b0d09aba580a.jpg Saving resized image from: 10_whole_foods/train/egg/cfedeb34-6ff6-4b65-81f0-865247daabf6.jpg to: data/10_whole_foods/train/egg/cfedeb34-6ff6-4b65-81f0-865247daabf6.jpg Saving resized image from: 10_whole_foods/train/egg/9295a6d2-c882-4227-a01b-ee5067f81077.jpg to: data/10_whole_foods/train/egg/9295a6d2-c882-4227-a01b-ee5067f81077.jpg Saving resized image from: 10_whole_foods/train/egg/6fd54a72-a491-4d67-9411-412da49e7db9.jpg to: data/10_whole_foods/train/egg/6fd54a72-a491-4d67-9411-412da49e7db9.jpg Saving resized image from: 10_whole_foods/train/egg/820859f8-72b7-4c71-9cc4-188506ad6485.jpg to: data/10_whole_foods/train/egg/820859f8-72b7-4c71-9cc4-188506ad6485.jpg Saving resized image from: 10_whole_foods/train/egg/a382315c-70e6-4a20-bc2c-4943856eec66.jpg to: data/10_whole_foods/train/egg/a382315c-70e6-4a20-bc2c-4943856eec66.jpg Saving resized image from: 10_whole_foods/train/egg/6d590fed-a0d6-4f3a-b33c-0fef15480929.jpg to: data/10_whole_foods/train/egg/6d590fed-a0d6-4f3a-b33c-0fef15480929.jpg Saving resized image from: 10_whole_foods/train/egg/632387d2-9ac3-46c5-b69f-a3bc28ff8f9e.jpg to: data/10_whole_foods/train/egg/632387d2-9ac3-46c5-b69f-a3bc28ff8f9e.jpg Saving resized image from: 10_whole_foods/train/egg/c41a6859-a785-4c14-bf5c-4428ece22f92.jpg to: data/10_whole_foods/train/egg/c41a6859-a785-4c14-bf5c-4428ece22f92.jpg Saving resized image from: 10_whole_foods/train/egg/2ad5d570-2ef6-432b-9d93-6e51cfc2dffc.jpg to: data/10_whole_foods/train/egg/2ad5d570-2ef6-432b-9d93-6e51cfc2dffc.jpg Saving resized image from: 10_whole_foods/train/egg/e7f51f91-79dc-49d7-bb1c-baca6cfc8c97.jpg to: data/10_whole_foods/train/egg/e7f51f91-79dc-49d7-bb1c-baca6cfc8c97.jpg Saving resized image from: 10_whole_foods/train/egg/101b7fc6-045a-40ad-bc76-a68bffa732cd.jpg to: data/10_whole_foods/train/egg/101b7fc6-045a-40ad-bc76-a68bffa732cd.jpg Saving resized image from: 10_whole_foods/train/egg/a6007d2d-774a-435b-89e1-33268da2abd8.jpg to: data/10_whole_foods/train/egg/a6007d2d-774a-435b-89e1-33268da2abd8.jpg Saving resized image from: 10_whole_foods/train/egg/d0fb9063-0303-4b16-b3fd-9c4201e6a289.jpg to: data/10_whole_foods/train/egg/d0fb9063-0303-4b16-b3fd-9c4201e6a289.jpg Saving resized image from: 10_whole_foods/train/egg/eb6e45d3-4f97-42fc-b864-31d6ba6be96a.jpg to: data/10_whole_foods/train/egg/eb6e45d3-4f97-42fc-b864-31d6ba6be96a.jpg Saving resized image from: 10_whole_foods/train/egg/b4a86bec-8ee9-431b-803f-6f313fdcd826.jpg to: data/10_whole_foods/train/egg/b4a86bec-8ee9-431b-803f-6f313fdcd826.jpg Saving resized image from: 10_whole_foods/train/egg/1e6231cf-62f4-4c8b-a2af-0cfb9747ba2b.jpg to: data/10_whole_foods/train/egg/1e6231cf-62f4-4c8b-a2af-0cfb9747ba2b.jpg Saving resized image from: 10_whole_foods/train/egg/159c388a-9bd4-4916-bd3b-4c0f54db32e4.jpg to: data/10_whole_foods/train/egg/159c388a-9bd4-4916-bd3b-4c0f54db32e4.jpg Saving resized image from: 10_whole_foods/train/egg/9c764572-1ddb-4bc4-a816-7a80de3f546e.jpg to: data/10_whole_foods/train/egg/9c764572-1ddb-4bc4-a816-7a80de3f546e.jpg Saving resized image from: 10_whole_foods/train/egg/0597bfb5-8e55-4ef1-9ca2-3f18bf48fdcb.jpg to: data/10_whole_foods/train/egg/0597bfb5-8e55-4ef1-9ca2-3f18bf48fdcb.jpg Saving resized image from: 10_whole_foods/train/egg/a181dde3-fe90-4c7c-9a92-9014f77a6b28.jpg to: data/10_whole_foods/train/egg/a181dde3-fe90-4c7c-9a92-9014f77a6b28.jpg Saving resized image from: 10_whole_foods/train/egg/2a414962-26e8-4c29-b8a8-cef95ff81e2d.jpg to: data/10_whole_foods/train/egg/2a414962-26e8-4c29-b8a8-cef95ff81e2d.jpg Saving resized image from: 10_whole_foods/train/egg/71b91e71-0778-43c7-a5b9-1666441fc518.jpg to: data/10_whole_foods/train/egg/71b91e71-0778-43c7-a5b9-1666441fc518.jpg Saving resized image from: 10_whole_foods/train/egg/7c45771c-5eb3-43df-957b-62787035c310.jpg to: data/10_whole_foods/train/egg/7c45771c-5eb3-43df-957b-62787035c310.jpg Saving resized image from: 10_whole_foods/train/egg/9ea8bbb6-f22a-412c-ac67-d818d5fa9c33.jpg to: data/10_whole_foods/train/egg/9ea8bbb6-f22a-412c-ac67-d818d5fa9c33.jpg Saving resized image from: 10_whole_foods/train/egg/7b4e7fa9-5767-4bd1-b25a-e8971864074a.jpg to: data/10_whole_foods/train/egg/7b4e7fa9-5767-4bd1-b25a-e8971864074a.jpg Saving resized image from: 10_whole_foods/train/egg/ba41b7dc-ebe9-42fb-b977-7f606abe2fad.jpg to: data/10_whole_foods/train/egg/ba41b7dc-ebe9-42fb-b977-7f606abe2fad.jpg Saving resized image from: 10_whole_foods/train/egg/f94a26d0-3ae7-4e3d-9619-f61cbba9c798.jpg to: data/10_whole_foods/train/egg/f94a26d0-3ae7-4e3d-9619-f61cbba9c798.jpg Saving resized image from: 10_whole_foods/train/egg/716cd0ad-385f-46b5-bc7d-3bbc6d8a5cc7.jpg to: data/10_whole_foods/train/egg/716cd0ad-385f-46b5-bc7d-3bbc6d8a5cc7.jpg Saving resized image from: 10_whole_foods/train/egg/86c49740-a906-4b6f-a54b-9e9ba874635d.jpg to: data/10_whole_foods/train/egg/86c49740-a906-4b6f-a54b-9e9ba874635d.jpg Saving resized image from: 10_whole_foods/train/egg/8a8fb761-f3a0-4a2e-a4cc-3bb082013376.jpg to: data/10_whole_foods/train/egg/8a8fb761-f3a0-4a2e-a4cc-3bb082013376.jpg Saving resized image from: 10_whole_foods/train/egg/54428b1c-f76f-4d51-ad94-aecf66975283.jpg to: data/10_whole_foods/train/egg/54428b1c-f76f-4d51-ad94-aecf66975283.jpg Saving resized image from: 10_whole_foods/train/egg/46a1be3b-fec4-4fc4-9115-08de91971e8d.jpg to: data/10_whole_foods/train/egg/46a1be3b-fec4-4fc4-9115-08de91971e8d.jpg Saving resized image from: 10_whole_foods/train/egg/9606212a-c2e8-4f66-99ad-ac1695b04738.jpg to: data/10_whole_foods/train/egg/9606212a-c2e8-4f66-99ad-ac1695b04738.jpg Saving resized image from: 10_whole_foods/train/egg/0b2d43a6-5be0-4640-9055-358e5341b67f.jpg to: data/10_whole_foods/train/egg/0b2d43a6-5be0-4640-9055-358e5341b67f.jpg Saving resized image from: 10_whole_foods/train/egg/639a7d65-b484-4235-b4b5-f180d24981a5.jpg to: data/10_whole_foods/train/egg/639a7d65-b484-4235-b4b5-f180d24981a5.jpg Saving resized image from: 10_whole_foods/train/egg/eaa00ed4-933f-45e0-bdeb-a4c70624b8a5.jpg to: data/10_whole_foods/train/egg/eaa00ed4-933f-45e0-bdeb-a4c70624b8a5.jpg Saving resized image from: 10_whole_foods/train/egg/4bcf1efb-e76b-425c-a980-d20fd3433346.jpg to: data/10_whole_foods/train/egg/4bcf1efb-e76b-425c-a980-d20fd3433346.jpg Saving resized image from: 10_whole_foods/train/egg/792ac493-16d7-47a4-9272-a4d3eb9fda4d.jpg to: data/10_whole_foods/train/egg/792ac493-16d7-47a4-9272-a4d3eb9fda4d.jpg Saving resized image from: 10_whole_foods/train/egg/6da5ab29-276c-4dfd-89ab-bfb22a5ceceb.jpg to: data/10_whole_foods/train/egg/6da5ab29-276c-4dfd-89ab-bfb22a5ceceb.jpg Saving resized image from: 10_whole_foods/train/egg/1271fc54-ec04-423c-90d9-fbafda2aa004.jpg to: data/10_whole_foods/train/egg/1271fc54-ec04-423c-90d9-fbafda2aa004.jpg Saving resized image from: 10_whole_foods/train/egg/e1070409-057d-422f-9015-490a7a8d4fac.jpg to: data/10_whole_foods/train/egg/e1070409-057d-422f-9015-490a7a8d4fac.jpg Saving resized image from: 10_whole_foods/train/egg/bd7c0a46-6f3c-409e-ab9e-46d38478c316.jpg to: data/10_whole_foods/train/egg/bd7c0a46-6f3c-409e-ab9e-46d38478c316.jpg Saving resized image from: 10_whole_foods/train/egg/3180c2ed-9bd2-43ee-8d61-bda1e3ecad11.jpg to: data/10_whole_foods/train/egg/3180c2ed-9bd2-43ee-8d61-bda1e3ecad11.jpg Saving resized image from: 10_whole_foods/train/egg/cb5c921c-3ca5-480d-8f69-8595d16e8fa3.jpg to: data/10_whole_foods/train/egg/cb5c921c-3ca5-480d-8f69-8595d16e8fa3.jpg Saving resized image from: 10_whole_foods/train/egg/f829c088-9269-4065-9998-dd363da54e41.jpg to: data/10_whole_foods/train/egg/f829c088-9269-4065-9998-dd363da54e41.jpg Saving resized image from: 10_whole_foods/train/egg/32ab60ae-bf0a-42a9-9cf7-272799e65d12.jpg to: data/10_whole_foods/train/egg/32ab60ae-bf0a-42a9-9cf7-272799e65d12.jpg Saving resized image from: 10_whole_foods/train/egg/1aa052ad-8be2-4f87-9084-4918bfb975e6.jpg to: data/10_whole_foods/train/egg/1aa052ad-8be2-4f87-9084-4918bfb975e6.jpg Saving resized image from: 10_whole_foods/train/egg/9d7117b4-a38b-40cb-acce-f71ff96e035b.jpg to: data/10_whole_foods/train/egg/9d7117b4-a38b-40cb-acce-f71ff96e035b.jpg Saving resized image from: 10_whole_foods/train/egg/82509ea3-7561-4da8-9114-df1bf839b8d0.jpg to: data/10_whole_foods/train/egg/82509ea3-7561-4da8-9114-df1bf839b8d0.jpg Saving resized image from: 10_whole_foods/train/egg/4908efed-f7b7-444f-b0a3-a8fa1a85be5e.jpg to: data/10_whole_foods/train/egg/4908efed-f7b7-444f-b0a3-a8fa1a85be5e.jpg Saving resized image from: 10_whole_foods/train/egg/df311acf-f771-4378-a146-345a7fd6f5f3.jpg to: data/10_whole_foods/train/egg/df311acf-f771-4378-a146-345a7fd6f5f3.jpg Saving resized image from: 10_whole_foods/train/egg/97062c0f-a51f-4bfd-80f2-3ed85c74984d.jpg to: data/10_whole_foods/train/egg/97062c0f-a51f-4bfd-80f2-3ed85c74984d.jpg Saving resized image from: 10_whole_foods/train/egg/7f611aed-5f89-472b-831c-756e7428b149.jpg to: data/10_whole_foods/train/egg/7f611aed-5f89-472b-831c-756e7428b149.jpg Saving resized image from: 10_whole_foods/train/honey/bc8fc207-e6a6-4fd4-986e-de3610666aa5.jpg to: data/10_whole_foods/train/honey/bc8fc207-e6a6-4fd4-986e-de3610666aa5.jpg Saving resized image from: 10_whole_foods/train/honey/141f232e-4f05-4c59-bdc4-a9deeef9a213.jpg to: data/10_whole_foods/train/honey/141f232e-4f05-4c59-bdc4-a9deeef9a213.jpg Saving resized image from: 10_whole_foods/train/honey/77eea2a6-b52a-4827-aa47-48e60961dc48.jpg to: data/10_whole_foods/train/honey/77eea2a6-b52a-4827-aa47-48e60961dc48.jpg Saving resized image from: 10_whole_foods/train/honey/58a01e91-567f-4499-aca9-f88f8b841b71.jpg to: data/10_whole_foods/train/honey/58a01e91-567f-4499-aca9-f88f8b841b71.jpg Saving resized image from: 10_whole_foods/train/honey/657320d7-0584-4d2e-9d69-892078dab77f.jpg to: data/10_whole_foods/train/honey/657320d7-0584-4d2e-9d69-892078dab77f.jpg Saving resized image from: 10_whole_foods/train/honey/739a0986-68a5-401b-bcc7-2c488de8f43a.jpg to: data/10_whole_foods/train/honey/739a0986-68a5-401b-bcc7-2c488de8f43a.jpg Saving resized image from: 10_whole_foods/train/honey/a788e88e-4c6e-4a81-afc0-5bc965195e86.jpg to: data/10_whole_foods/train/honey/a788e88e-4c6e-4a81-afc0-5bc965195e86.jpg Saving resized image from: 10_whole_foods/train/honey/ef38a030-f57e-4516-b35c-3deae92d1a9a.jpg to: data/10_whole_foods/train/honey/ef38a030-f57e-4516-b35c-3deae92d1a9a.jpg Saving resized image from: 10_whole_foods/train/honey/8ce73199-ac6f-4c15-b381-5e8c3a548784.jpg to: data/10_whole_foods/train/honey/8ce73199-ac6f-4c15-b381-5e8c3a548784.jpg Saving resized image from: 10_whole_foods/train/honey/01f19ce0-e778-4cd8-98f4-0d8c45661255.jpg to: data/10_whole_foods/train/honey/01f19ce0-e778-4cd8-98f4-0d8c45661255.jpg Saving resized image from: 10_whole_foods/train/honey/20e5f929-20b8-458f-bbe1-b5e0caceb0e3.jpg to: data/10_whole_foods/train/honey/20e5f929-20b8-458f-bbe1-b5e0caceb0e3.jpg Saving resized image from: 10_whole_foods/train/honey/5560bc17-f555-47a4-83de-ab7d64b8410e.jpg to: data/10_whole_foods/train/honey/5560bc17-f555-47a4-83de-ab7d64b8410e.jpg Saving resized image from: 10_whole_foods/train/honey/0fd0e739-853f-4c95-8fd7-161a2e645c3e.jpg to: data/10_whole_foods/train/honey/0fd0e739-853f-4c95-8fd7-161a2e645c3e.jpg Saving resized image from: 10_whole_foods/train/honey/e2735669-c3d5-42c5-a88e-a7504c4eb1cb.jpg to: data/10_whole_foods/train/honey/e2735669-c3d5-42c5-a88e-a7504c4eb1cb.jpg Saving resized image from: 10_whole_foods/train/honey/09afae5c-93e8-4235-bc01-7012f2a8f16e.jpg to: data/10_whole_foods/train/honey/09afae5c-93e8-4235-bc01-7012f2a8f16e.jpg Saving resized image from: 10_whole_foods/train/honey/1b3d16a7-221f-472c-a2ea-962d22f991f3.jpg to: data/10_whole_foods/train/honey/1b3d16a7-221f-472c-a2ea-962d22f991f3.jpg Saving resized image from: 10_whole_foods/train/honey/4f8a80eb-aa8d-46cb-9d73-fca3837d62e6.jpg to: data/10_whole_foods/train/honey/4f8a80eb-aa8d-46cb-9d73-fca3837d62e6.jpg Saving resized image from: 10_whole_foods/train/honey/5889d513-7ff0-414a-80cd-48d53b909382.jpg to: data/10_whole_foods/train/honey/5889d513-7ff0-414a-80cd-48d53b909382.jpg Saving resized image from: 10_whole_foods/train/honey/089d3b07-18ac-4946-b9c7-4ba29be60e21.jpg to: data/10_whole_foods/train/honey/089d3b07-18ac-4946-b9c7-4ba29be60e21.jpg Saving resized image from: 10_whole_foods/train/honey/1561d83e-28f1-4282-ab03-a4961ee28c25.jpg to: data/10_whole_foods/train/honey/1561d83e-28f1-4282-ab03-a4961ee28c25.jpg Saving resized image from: 10_whole_foods/train/honey/53adc373-96ed-4391-a812-c6ac75ea305a.jpg to: data/10_whole_foods/train/honey/53adc373-96ed-4391-a812-c6ac75ea305a.jpg Saving resized image from: 10_whole_foods/train/honey/0dcd2f3b-08c8-41fa-80dc-08487e5c9c47.jpg to: data/10_whole_foods/train/honey/0dcd2f3b-08c8-41fa-80dc-08487e5c9c47.jpg Saving resized image from: 10_whole_foods/train/honey/215f629b-4352-4ff0-ab01-9be5fb4ddec2.jpg to: data/10_whole_foods/train/honey/215f629b-4352-4ff0-ab01-9be5fb4ddec2.jpg Saving resized image from: 10_whole_foods/train/honey/4e964d1a-a1e7-4120-9879-ee6210cec7dc.jpg to: data/10_whole_foods/train/honey/4e964d1a-a1e7-4120-9879-ee6210cec7dc.jpg Saving resized image from: 10_whole_foods/train/honey/7482bdb5-f465-4a46-84ba-a9c4ed544f1d.jpg to: data/10_whole_foods/train/honey/7482bdb5-f465-4a46-84ba-a9c4ed544f1d.jpg Saving resized image from: 10_whole_foods/train/honey/3b6f5af6-03bc-4446-bb15-052dd8bbea40.jpg to: data/10_whole_foods/train/honey/3b6f5af6-03bc-4446-bb15-052dd8bbea40.jpg Saving resized image from: 10_whole_foods/train/honey/3d2a49b6-e5d3-443f-81c7-92ba3bfbae27.jpg to: data/10_whole_foods/train/honey/3d2a49b6-e5d3-443f-81c7-92ba3bfbae27.jpg Saving resized image from: 10_whole_foods/train/honey/5ca8bc28-2519-42ed-a69c-8e6c24bbe234.jpg to: data/10_whole_foods/train/honey/5ca8bc28-2519-42ed-a69c-8e6c24bbe234.jpg Saving resized image from: 10_whole_foods/train/honey/08438d0b-e3c1-4878-a625-8dd2653eb03e.jpg to: data/10_whole_foods/train/honey/08438d0b-e3c1-4878-a625-8dd2653eb03e.jpg Saving resized image from: 10_whole_foods/train/honey/9f0d9160-f8ae-453e-b20b-1c0b0fc94d0c.jpg to: data/10_whole_foods/train/honey/9f0d9160-f8ae-453e-b20b-1c0b0fc94d0c.jpg Saving resized image from: 10_whole_foods/train/honey/9c2d32fc-6f6a-4d00-a809-8b54642bf8ff.jpg to: data/10_whole_foods/train/honey/9c2d32fc-6f6a-4d00-a809-8b54642bf8ff.jpg Saving resized image from: 10_whole_foods/train/honey/c743d35c-9a10-4e31-8ae4-4eb2e52d45d6.jpg to: data/10_whole_foods/train/honey/c743d35c-9a10-4e31-8ae4-4eb2e52d45d6.jpg Saving resized image from: 10_whole_foods/train/honey/d7245792-2c42-4894-892a-f8fda70266f8.jpg to: data/10_whole_foods/train/honey/d7245792-2c42-4894-892a-f8fda70266f8.jpg Saving resized image from: 10_whole_foods/train/honey/ba568e8f-4f41-48a1-8e30-22d73504360b.jpg to: data/10_whole_foods/train/honey/ba568e8f-4f41-48a1-8e30-22d73504360b.jpg Saving resized image from: 10_whole_foods/train/honey/d103202d-c5d1-48b3-8cd3-c06e5e3eef79.jpg to: data/10_whole_foods/train/honey/d103202d-c5d1-48b3-8cd3-c06e5e3eef79.jpg Saving resized image from: 10_whole_foods/train/honey/e0dfaed1-eef0-4e20-bb98-8df9da5457da.jpg to: data/10_whole_foods/train/honey/e0dfaed1-eef0-4e20-bb98-8df9da5457da.jpg Saving resized image from: 10_whole_foods/train/honey/2dd79bcc-fd06-4717-bf44-537672056960.jpg to: data/10_whole_foods/train/honey/2dd79bcc-fd06-4717-bf44-537672056960.jpg Saving resized image from: 10_whole_foods/train/honey/08d7b020-eb82-42c0-ae8c-1b5bdc905cfa.jpg to: data/10_whole_foods/train/honey/08d7b020-eb82-42c0-ae8c-1b5bdc905cfa.jpg Saving resized image from: 10_whole_foods/train/honey/84f4c1b7-44c4-4186-bb77-661ff2e19eae.jpg to: data/10_whole_foods/train/honey/84f4c1b7-44c4-4186-bb77-661ff2e19eae.jpg Saving resized image from: 10_whole_foods/train/honey/00c42578-b780-460a-8c8d-d9928882b817.jpg to: data/10_whole_foods/train/honey/00c42578-b780-460a-8c8d-d9928882b817.jpg Saving resized image from: 10_whole_foods/train/honey/5ef45411-a840-4090-a6d2-c3e37d1d6e0d.jpg to: data/10_whole_foods/train/honey/5ef45411-a840-4090-a6d2-c3e37d1d6e0d.jpg Saving resized image from: 10_whole_foods/train/honey/e5b4fab0-9b9f-4789-89a0-1ce8b765d6f6.jpg to: data/10_whole_foods/train/honey/e5b4fab0-9b9f-4789-89a0-1ce8b765d6f6.jpg Saving resized image from: 10_whole_foods/train/honey/267bcde5-5ca0-4ea3-938b-85af9d2840ff.jpg to: data/10_whole_foods/train/honey/267bcde5-5ca0-4ea3-938b-85af9d2840ff.jpg Saving resized image from: 10_whole_foods/train/honey/8575e016-54f1-4d70-861d-88237ba6126e.jpg to: data/10_whole_foods/train/honey/8575e016-54f1-4d70-861d-88237ba6126e.jpg Saving resized image from: 10_whole_foods/train/honey/01d95dd2-d581-42c4-aada-87a312f65f48.jpg to: data/10_whole_foods/train/honey/01d95dd2-d581-42c4-aada-87a312f65f48.jpg Saving resized image from: 10_whole_foods/train/honey/470d16cb-30b1-4eb5-9eb1-31b0248acbe1.jpg to: data/10_whole_foods/train/honey/470d16cb-30b1-4eb5-9eb1-31b0248acbe1.jpg Saving resized image from: 10_whole_foods/train/honey/e102b494-075e-4104-8cb1-ec166b7315fb.jpg to: data/10_whole_foods/train/honey/e102b494-075e-4104-8cb1-ec166b7315fb.jpg Saving resized image from: 10_whole_foods/train/honey/7878974b-300a-4a5a-89d4-07b903eb86d8.jpg to: data/10_whole_foods/train/honey/7878974b-300a-4a5a-89d4-07b903eb86d8.jpg Saving resized image from: 10_whole_foods/train/honey/d0b0a103-8c1f-468c-8b4e-3cd2ecff6d4a.jpg to: data/10_whole_foods/train/honey/d0b0a103-8c1f-468c-8b4e-3cd2ecff6d4a.jpg Saving resized image from: 10_whole_foods/train/honey/a4a02c43-6e1e-4da2-be56-d0c5be9d844e.jpg to: data/10_whole_foods/train/honey/a4a02c43-6e1e-4da2-be56-d0c5be9d844e.jpg Saving resized image from: 10_whole_foods/train/honey/ff7291ce-b55b-4aa7-a2ab-46810a1b9efe.jpg to: data/10_whole_foods/train/honey/ff7291ce-b55b-4aa7-a2ab-46810a1b9efe.jpg Saving resized image from: 10_whole_foods/train/honey/fddb8460-1d6e-4c89-9c9d-d1cf76aeaf54.jpg to: data/10_whole_foods/train/honey/fddb8460-1d6e-4c89-9c9d-d1cf76aeaf54.jpg Saving resized image from: 10_whole_foods/train/honey/4e125b97-27b1-43aa-a2e4-cc05429dc77e.jpg to: data/10_whole_foods/train/honey/4e125b97-27b1-43aa-a2e4-cc05429dc77e.jpg Saving resized image from: 10_whole_foods/train/honey/90eff5a4-96df-4afe-9e5c-2a7cc7c9d17f.jpg to: data/10_whole_foods/train/honey/90eff5a4-96df-4afe-9e5c-2a7cc7c9d17f.jpg Saving resized image from: 10_whole_foods/train/honey/d4e17c09-7abb-46f1-80a0-f89f5ddc6af7.jpg to: data/10_whole_foods/train/honey/d4e17c09-7abb-46f1-80a0-f89f5ddc6af7.jpg Saving resized image from: 10_whole_foods/train/honey/8de82a76-aa2f-43fd-86f6-5f8cc412808e.jpg to: data/10_whole_foods/train/honey/8de82a76-aa2f-43fd-86f6-5f8cc412808e.jpg Saving resized image from: 10_whole_foods/train/honey/90b7735f-097a-4966-b8fb-c51a3519d133.jpg to: data/10_whole_foods/train/honey/90b7735f-097a-4966-b8fb-c51a3519d133.jpg Saving resized image from: 10_whole_foods/train/honey/048fea17-bdcb-43ff-924d-a01f9d481b94.jpg to: data/10_whole_foods/train/honey/048fea17-bdcb-43ff-924d-a01f9d481b94.jpg Saving resized image from: 10_whole_foods/train/honey/6910a146-51a3-4523-bfd0-0d6c5522e65c.jpg to: data/10_whole_foods/train/honey/6910a146-51a3-4523-bfd0-0d6c5522e65c.jpg Saving resized image from: 10_whole_foods/train/honey/625ea866-2fd2-413e-957f-53c19e73af7c.jpg to: data/10_whole_foods/train/honey/625ea866-2fd2-413e-957f-53c19e73af7c.jpg Saving resized image from: 10_whole_foods/train/honey/8da2b2ec-09c4-43b3-80a0-ac2e2149b70b.jpg to: data/10_whole_foods/train/honey/8da2b2ec-09c4-43b3-80a0-ac2e2149b70b.jpg Saving resized image from: 10_whole_foods/train/honey/79bb88fc-a3fe-49a8-8962-d88feee44d52.jpg to: data/10_whole_foods/train/honey/79bb88fc-a3fe-49a8-8962-d88feee44d52.jpg Saving resized image from: 10_whole_foods/train/honey/7f38cc43-0c24-48f9-bf55-d9358776c4ca.jpg to: data/10_whole_foods/train/honey/7f38cc43-0c24-48f9-bf55-d9358776c4ca.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d2c3888f-c70a-4b3c-bd6f-b82e99623ec7.jpg to: data/10_whole_foods/train/chicken_wings/d2c3888f-c70a-4b3c-bd6f-b82e99623ec7.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/9c631c94-9db4-4f65-9101-7c5d78626e34.jpg to: data/10_whole_foods/train/chicken_wings/9c631c94-9db4-4f65-9101-7c5d78626e34.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/da360f91-7088-4677-8eef-425e2c5638dc.jpg to: data/10_whole_foods/train/chicken_wings/da360f91-7088-4677-8eef-425e2c5638dc.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/555be0a3-0469-479b-abe0-4d19d92386ad.jpg to: data/10_whole_foods/train/chicken_wings/555be0a3-0469-479b-abe0-4d19d92386ad.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/051190d1-ba9e-499f-8932-6113f7c9056b.jpg to: data/10_whole_foods/train/chicken_wings/051190d1-ba9e-499f-8932-6113f7c9056b.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/0a40f11d-6823-4f37-9d01-8305fc62ef77.jpg to: data/10_whole_foods/train/chicken_wings/0a40f11d-6823-4f37-9d01-8305fc62ef77.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/cfb99716-151c-42b3-a2dc-161c04a4d2cd.jpg to: data/10_whole_foods/train/chicken_wings/cfb99716-151c-42b3-a2dc-161c04a4d2cd.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/50fe1164-b66f-46dc-ac25-47b9ce342a21.jpg to: data/10_whole_foods/train/chicken_wings/50fe1164-b66f-46dc-ac25-47b9ce342a21.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/b97f58bb-005c-4b76-8cec-8d5c795995ac.jpg to: data/10_whole_foods/train/chicken_wings/b97f58bb-005c-4b76-8cec-8d5c795995ac.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/4da08242-c139-4a90-8a36-8a4860442e9c.jpg to: data/10_whole_foods/train/chicken_wings/4da08242-c139-4a90-8a36-8a4860442e9c.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/3a622258-3927-4264-bd6e-4fd95f91039d.jpg to: data/10_whole_foods/train/chicken_wings/3a622258-3927-4264-bd6e-4fd95f91039d.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/10f0f5ae-570a-4a5e-8452-edc44877b3b0.jpg to: data/10_whole_foods/train/chicken_wings/10f0f5ae-570a-4a5e-8452-edc44877b3b0.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/5e822910-6814-4404-ab16-df90694e4b4b.jpg to: data/10_whole_foods/train/chicken_wings/5e822910-6814-4404-ab16-df90694e4b4b.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/2884208c-da6c-4b12-b3e9-a145d56f628c.jpg to: data/10_whole_foods/train/chicken_wings/2884208c-da6c-4b12-b3e9-a145d56f628c.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/5ed33cbf-80e1-4a56-9a49-c2c8e2b9e9fb.jpg to: data/10_whole_foods/train/chicken_wings/5ed33cbf-80e1-4a56-9a49-c2c8e2b9e9fb.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/1a8ff2f8-ad32-48ea-bb4f-5d9ad82c103e.jpg to: data/10_whole_foods/train/chicken_wings/1a8ff2f8-ad32-48ea-bb4f-5d9ad82c103e.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/420146f3-2741-46a9-8d8e-a91dc40477ac.jpg to: data/10_whole_foods/train/chicken_wings/420146f3-2741-46a9-8d8e-a91dc40477ac.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/00610bf9-410f-44e2-81c3-69033bfb2796.jpg to: data/10_whole_foods/train/chicken_wings/00610bf9-410f-44e2-81c3-69033bfb2796.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/018e62c7-f37a-4997-a51e-eae89fafd291.jpg to: data/10_whole_foods/train/chicken_wings/018e62c7-f37a-4997-a51e-eae89fafd291.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/74f8d39f-b08a-4e03-b418-f852a0875a06.jpg to: data/10_whole_foods/train/chicken_wings/74f8d39f-b08a-4e03-b418-f852a0875a06.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d5eb989c-564f-4ae3-bae6-189f0a586cd3.jpg to: data/10_whole_foods/train/chicken_wings/d5eb989c-564f-4ae3-bae6-189f0a586cd3.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/0095577a-5cdd-4a3f-a237-b2a92184f180.jpg to: data/10_whole_foods/train/chicken_wings/0095577a-5cdd-4a3f-a237-b2a92184f180.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/43599c16-187c-47da-bd86-70042aec5960.jpg to: data/10_whole_foods/train/chicken_wings/43599c16-187c-47da-bd86-70042aec5960.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/997ba060-c9ed-4bd0-a042-97fff7772876.jpg to: data/10_whole_foods/train/chicken_wings/997ba060-c9ed-4bd0-a042-97fff7772876.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/366eb84e-6212-41c0-9b54-e8b2c5a81c9a.jpg to: data/10_whole_foods/train/chicken_wings/366eb84e-6212-41c0-9b54-e8b2c5a81c9a.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/2f109a65-5de2-4a0a-bf3f-a81ec633fed0.jpg to: data/10_whole_foods/train/chicken_wings/2f109a65-5de2-4a0a-bf3f-a81ec633fed0.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/60f4d8cc-f723-4073-835f-7dae5e2ebe16.jpg to: data/10_whole_foods/train/chicken_wings/60f4d8cc-f723-4073-835f-7dae5e2ebe16.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/1cc1b896-b54f-4582-a045-265d75487dc4.jpg to: data/10_whole_foods/train/chicken_wings/1cc1b896-b54f-4582-a045-265d75487dc4.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/903d7529-f671-468a-bf4c-760b455c9ac9.jpg to: data/10_whole_foods/train/chicken_wings/903d7529-f671-468a-bf4c-760b455c9ac9.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/1dfa38ce-68aa-4475-8b81-dccd29801772.jpg to: data/10_whole_foods/train/chicken_wings/1dfa38ce-68aa-4475-8b81-dccd29801772.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/92792817-5831-42df-992c-ce773ddfc67a.jpg to: data/10_whole_foods/train/chicken_wings/92792817-5831-42df-992c-ce773ddfc67a.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/16559807-d6f4-4993-9779-5f970943d106.jpg to: data/10_whole_foods/train/chicken_wings/16559807-d6f4-4993-9779-5f970943d106.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/172f0b11-603c-4d13-abf1-c66941016104.jpg to: data/10_whole_foods/train/chicken_wings/172f0b11-603c-4d13-abf1-c66941016104.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/7951e200-d928-4a9f-9585-1235a0b5a781.jpg to: data/10_whole_foods/train/chicken_wings/7951e200-d928-4a9f-9585-1235a0b5a781.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/a61cfdd0-4870-4e10-b166-c1176601180b.jpg to: data/10_whole_foods/train/chicken_wings/a61cfdd0-4870-4e10-b166-c1176601180b.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/60c96893-ccd6-4a16-9a7c-7dc4524e8b8f.jpg to: data/10_whole_foods/train/chicken_wings/60c96893-ccd6-4a16-9a7c-7dc4524e8b8f.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/892a32ca-6a83-4cb8-a6f4-60c5535b5ba4.jpg to: data/10_whole_foods/train/chicken_wings/892a32ca-6a83-4cb8-a6f4-60c5535b5ba4.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/f298b214-2c8b-4769-b4cb-f206c445b283.jpg to: data/10_whole_foods/train/chicken_wings/f298b214-2c8b-4769-b4cb-f206c445b283.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/1b5fa7d3-0bb5-487f-ac8a-a5467c5379d6.jpg to: data/10_whole_foods/train/chicken_wings/1b5fa7d3-0bb5-487f-ac8a-a5467c5379d6.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/8425c405-9111-41a9-b9b9-d859db6c7b27.jpg to: data/10_whole_foods/train/chicken_wings/8425c405-9111-41a9-b9b9-d859db6c7b27.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/0dadc413-9e3b-4586-83d5-4a5834b3ef0a.jpg to: data/10_whole_foods/train/chicken_wings/0dadc413-9e3b-4586-83d5-4a5834b3ef0a.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/0ab5a92e-4eeb-40ca-b7a1-8492ea27f99a.jpg to: data/10_whole_foods/train/chicken_wings/0ab5a92e-4eeb-40ca-b7a1-8492ea27f99a.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/90d8cdc9-5aad-45b7-9bd2-d1eb23565467.jpg to: data/10_whole_foods/train/chicken_wings/90d8cdc9-5aad-45b7-9bd2-d1eb23565467.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d5cecbbc-5ba0-4462-b195-d8409c35a2d7.jpg to: data/10_whole_foods/train/chicken_wings/d5cecbbc-5ba0-4462-b195-d8409c35a2d7.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/c161994e-543e-4f6a-bc4a-c9d1573c8a95.jpg to: data/10_whole_foods/train/chicken_wings/c161994e-543e-4f6a-bc4a-c9d1573c8a95.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/6a4f7b08-64ca-4577-9fba-2dea1eb6f5a7.jpg to: data/10_whole_foods/train/chicken_wings/6a4f7b08-64ca-4577-9fba-2dea1eb6f5a7.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/6150b2dc-d0dd-45e4-bb93-ae3d5fc918dc.jpg to: data/10_whole_foods/train/chicken_wings/6150b2dc-d0dd-45e4-bb93-ae3d5fc918dc.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/5682abdb-ee06-4ac8-ac16-131c3a44426f.jpg to: data/10_whole_foods/train/chicken_wings/5682abdb-ee06-4ac8-ac16-131c3a44426f.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/585eb0b4-822f-466a-a792-943ab4034804.jpg to: data/10_whole_foods/train/chicken_wings/585eb0b4-822f-466a-a792-943ab4034804.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/406afeff-29fb-450f-bd2b-15b7277fc9b1.jpg to: data/10_whole_foods/train/chicken_wings/406afeff-29fb-450f-bd2b-15b7277fc9b1.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/1dc57415-26d4-441d-88b0-15848e314ce5.jpg to: data/10_whole_foods/train/chicken_wings/1dc57415-26d4-441d-88b0-15848e314ce5.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/a013cc18-6f10-4a47-b474-a5e0540761bd.jpg to: data/10_whole_foods/train/chicken_wings/a013cc18-6f10-4a47-b474-a5e0540761bd.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/9bf5c372-2a02-4a9f-b7b4-bb426ea92dc8.jpg to: data/10_whole_foods/train/chicken_wings/9bf5c372-2a02-4a9f-b7b4-bb426ea92dc8.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/0049d13b-50e9-4780-a47f-4d2de82035f2.jpg to: data/10_whole_foods/train/chicken_wings/0049d13b-50e9-4780-a47f-4d2de82035f2.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/9faa1496-fc6a-480d-9374-ea77fd9ebd38.jpg to: data/10_whole_foods/train/chicken_wings/9faa1496-fc6a-480d-9374-ea77fd9ebd38.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/ffb8ddfe-2ba7-403d-ae82-2b73f90160ce.jpg to: data/10_whole_foods/train/chicken_wings/ffb8ddfe-2ba7-403d-ae82-2b73f90160ce.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/be14524e-05f4-4add-81d0-37ad5b557c1a.jpg to: data/10_whole_foods/train/chicken_wings/be14524e-05f4-4add-81d0-37ad5b557c1a.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/84afef8c-ef4e-42f9-9058-fc8bbde82402.jpg to: data/10_whole_foods/train/chicken_wings/84afef8c-ef4e-42f9-9058-fc8bbde82402.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/66f9730a-d620-44c9-8925-182238cb409b.jpg to: data/10_whole_foods/train/chicken_wings/66f9730a-d620-44c9-8925-182238cb409b.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/195a9fbd-939c-4197-8d21-121193a87d03.jpg to: data/10_whole_foods/train/chicken_wings/195a9fbd-939c-4197-8d21-121193a87d03.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/a6ff49a6-ad2a-4cfc-a080-124ab350a530.jpg to: data/10_whole_foods/train/chicken_wings/a6ff49a6-ad2a-4cfc-a080-124ab350a530.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/2c2d0eac-6b08-4c72-a2e8-258b191c0252.jpg to: data/10_whole_foods/train/chicken_wings/2c2d0eac-6b08-4c72-a2e8-258b191c0252.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/b9da624a-9f5c-4bb2-baa6-521783588205.jpg to: data/10_whole_foods/train/chicken_wings/b9da624a-9f5c-4bb2-baa6-521783588205.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/3b191f97-0b37-472c-88b9-9004a2247f3b.jpg to: data/10_whole_foods/train/chicken_wings/3b191f97-0b37-472c-88b9-9004a2247f3b.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/4e07e51a-611f-43ee-b044-c0dc385be392.jpg to: data/10_whole_foods/train/chicken_wings/4e07e51a-611f-43ee-b044-c0dc385be392.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d68dc466-d233-4fd4-b658-cbac75acf023.jpg to: data/10_whole_foods/train/chicken_wings/d68dc466-d233-4fd4-b658-cbac75acf023.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d6e5ad90-013c-46b2-9ccb-f33ef7b28f61.jpg to: data/10_whole_foods/train/chicken_wings/d6e5ad90-013c-46b2-9ccb-f33ef7b28f61.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/fcb4b348-9088-4754-8f77-a6702649fda9.jpg to: data/10_whole_foods/train/chicken_wings/fcb4b348-9088-4754-8f77-a6702649fda9.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/3541f970-548f-46a7-a0f6-fb3af367bba8.jpg to: data/10_whole_foods/train/chicken_wings/3541f970-548f-46a7-a0f6-fb3af367bba8.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/bee4fa29-cd6d-4feb-b1c3-5cbf3557b689.jpg to: data/10_whole_foods/train/chicken_wings/bee4fa29-cd6d-4feb-b1c3-5cbf3557b689.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d81fc430-630f-4a3c-937d-ed8d350d00c1.jpg to: data/10_whole_foods/train/chicken_wings/d81fc430-630f-4a3c-937d-ed8d350d00c1.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/e646e512-a93b-4c05-a75f-aab1d4b4bb3d.jpg to: data/10_whole_foods/train/chicken_wings/e646e512-a93b-4c05-a75f-aab1d4b4bb3d.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/0c4afa01-91fb-43f2-be0a-b0e55c0d407a.jpg to: data/10_whole_foods/train/chicken_wings/0c4afa01-91fb-43f2-be0a-b0e55c0d407a.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/cf0aba9a-0d3f-47e8-9420-78597cfd0a8d.jpg to: data/10_whole_foods/train/chicken_wings/cf0aba9a-0d3f-47e8-9420-78597cfd0a8d.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/6dcad646-8a5c-44fa-a5b6-d24cae2422a5.jpg to: data/10_whole_foods/train/chicken_wings/6dcad646-8a5c-44fa-a5b6-d24cae2422a5.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/40d8f689-0cf8-487b-9f71-6de66001848b.jpg to: data/10_whole_foods/train/chicken_wings/40d8f689-0cf8-487b-9f71-6de66001848b.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/2f321266-74ba-428c-b7fb-8779a08ff9c8.jpg to: data/10_whole_foods/train/chicken_wings/2f321266-74ba-428c-b7fb-8779a08ff9c8.jpg Saving resized image from: 10_whole_foods/train/chicken_wings/d71ea7cb-b3a1-45db-846f-cd2553f38434.jpg to: data/10_whole_foods/train/chicken_wings/d71ea7cb-b3a1-45db-846f-cd2553f38434.jpg
