UnrecognizedFlagError: Unknown command line flag 'f'
radhesyam opened this issue · 3 comments
I am trying to implement Deep Learning for Land-cover Classification in Hyper spectral Images
In CNN_feed.ipynb file line number-9 run_training() function the following error encountered
UnrecognizedFlagError: Unknown command line flag 'f'
The replay will be helpful for my research
I am trying to implement Deep Learning for Land-cover Classification in Hyper spectral Images
In CNN_feed.ipynb file line number-9 run_training() function the following error encountered
UnrecognizedFlagError: Unknown command line flag 'f'
You may have to use an older version of Tensorflow to work with the example.
You can add this line to the definition part, it works well.
tf.app.flags.DEFINE_string('f', '', 'kernel')
Using, this you create a flag f, which is required by the kernel of jupyter notebook.