Hyperspectral icon indicating copy to clipboard operation
Hyperspectral copied to clipboard

UnrecognizedFlagError: Unknown command line flag 'f'

Open radhesyam opened this issue 6 years ago • 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

radhesyam avatar May 11 '18 07:05 radhesyam

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'

radhesyam avatar May 15 '18 07:05 radhesyam

You may have to use an older version of Tensorflow to work with the example.

alwinkai avatar Jul 06 '18 05:07 alwinkai

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.

Sravani-Kalangi avatar Apr 16 '19 08:04 Sravani-Kalangi