googlecodelabs / tensorflow-for-poets-2

Apache License 2.0
509 stars 463 forks source link

can not find mutable_op_resolver.h #88

Open jiangzhubo opened 6 years ago

jiangzhubo commented 6 years ago

i use python 2.7 and tensorflow ==1.7.1 i follow everything as TensorFlow For Poets said, but when i run Xcode for tflite_photos_example.xcworkspace it said tensorflow/contrib/lite/tools/mutable_op_resolver.h can not be found, and i check it , it is missing. Do you know how to solve this ?

dmachacon commented 6 years ago

same here.

dmachacon commented 6 years ago

was able to build and run the application. just change this line

include "tensorflow/contrib/lite/tools/mutable_op_resolver.h"

to this line

include "tensorflow/contrib/lite/op_resolver.h"

frankie-yanfeng commented 5 years ago

Thanks @dmachacon , you save my day.

was able to build and run the application. just change this line

include "tensorflow/contrib/lite/tools/mutable_op_resolver.h"

to this line

include "tensorflow/contrib/lite/op_resolver.h"