Skip to content

Tag: tensorflow

How to fine-tune a functional model in Keras?

Taking a pre-trained model in Keras and replacing the top classification layer to retrain the network to a new task has several examples using a Sequential model in Keras. A sequential model has methods model.pop() and model.add() which make this fairly easy. However, how is this achieved when using a functio…

Import error: module object detection not found

When i try run code into Jupyter notebook i getting Import error(attached image). I add paths to PYTHON_PATH and add %PYTHON_PATH% in system PATH, but i still get thos error Answer If you are using Anaconda, you must know that it ignores PYTHONPATH!. Use the following commands: conda develop ~/models/research…