Skip to content

Commit dc5f4bd

Browse files
committed
readme fix
1 parent be8f5d3 commit dc5f4bd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ Here are some outstanding issues and misc notes.
218218
ofImage.load doesn't work for some reason. FreeImage_Load fails. Neither does cvLoadImage (or cv::imread). If I don't use tensorflow, it works. If I use tensorflow, it doesn't. Just fails silently. Needs serious investigation. (So for the inception demo, I had to test it by converting jpgs to raw data in gimp and load them via ofBuffers :/)
219219

220220
## No system dialogs - see UPDATE below
221-
ofSystemDialog was linked with protobuf 2.6.1 whereas tensorflow needs protobuf>3.0.0 (not released yet, using dev version). So can't use ofSystemDialogs. Also needs investigation.
221+
Whatever it is that implements ofSystemDialog, was compiled with protobuf 2.6.1 whereas tensorflow needs protobuf>3.0.0 (not released yet, using dev version). So can't use ofSystemDialogs. Also needs investigation.
222222

223223
## X.h defines
224224
X.h was #defining a bunch of common words like Success, Status, None etc to ints. Those are class names in tensorflow so it was causing the compilation to fail. So before including any tensorflow headers I #undef them (I do this in ofxMSATensorFlow.h, so you don't have to do it). BUT there might be side effects.
@@ -248,7 +248,9 @@ e.g. /home/memo/DEV/of_v0.9.0_linux64_release/addons/ofxMSATensorFlow/
248248
## Trained variables not saved
249249
Nothing to do with ofxMSATensorFlow, but a big gotcha for me was discovering that models saved from python don't save the trained parameters!
250250
Python's *tf.train.write_graph* method saves the graph, but doesn't save the variable values (i.e. parameters) of the model. Which kind of defeats the purpose. Currently there's a few hack workarounds for this. I have these implented and commented in the MNIST examples.
251+
251252
-----
253+
252254
#UPDATE
253255
QT Creator requires libgtk-3-dev, which requires libprotobuf v2.6
254256
So removing libprotobuf renders QT Creator useless.

0 commit comments

Comments
 (0)