inception model
bazel-bin/inception/download_and_preprocess_flowers "${FLOWERS_DATA_DIR}"
bazel-bin/inception/download_and_preprocess_flowers: line 93: bazel-bin/inception/download_and_preprocess_flowers.runfiles/inception/build_image_data: No such file or directory
in inception code, WORK_DIR="$0.runfiles/inception" need to be modified to WORK_DIR="$0.runfiles/__main__/inception" . And, there are so many functions which are deprecated.
@shlens Blast from the past?
I suspect that there is something unique about your linux/bazel set up such that the paths are not set up correctly. Hopefully someone in the larger TF community has encountered this issue.
Automatically closing due to lack of recent activity. Please update the issue when new information becomes available, and we will reopen the issue. Thanks!
Looks like this folder is moved. When reporting, please include the new location.
Most helpful comment
in inception code,
WORK_DIR="$0.runfiles/inception"need to be modified toWORK_DIR="$0.runfiles/__main__/inception". And, there are so many functions which are deprecated.