In addition to Anthony’s excellent points, here are a few more thoughts:
TensorFlow is not the only platform out there. Another very popular one is PyTorch. Perhaps you’d find that more intuitive. Almost everything from DeepLearning.AI uses TF, but there is one specialization here that uses PyTorch, which is the GANs Specialization. It is very well done and presented by Prof Sharon Zhou. The material is very interesting in its own right and you get the beneficial “side effect” of getting a very nice introduction to PyTorch if you take that specialization. If your goal is to work professionally in ML, then knowing more platforms is always a good thing. Just like knowing more programming languages, it can’t hurt.
But staying with the TF/Keras side of the discussion, one other thing to do is to study some of the tutorials on the TF website about applying Keras. Also take a look at the list of pretrained models that are provided by Keras to get a sense for what is available as a basis for Transfer Learning. Here’s a thread with relevant links to get you started on both those topics.
But stepping back to the 10,000 ft level, maybe you just need to take a slightly wider view of what you’ve learned. Suppose you have a new problem that you are trying to solve and you believe that DL should be a good solution. The first thing to consider is what kind of a problem is it? E.g. is it image recognition, object detection, computer vision, medical image analysis or is it more like an NLP problem or yet something else? Of all the examples you’ve worked through in the various DLS assignments, have you seen any that are at least “in the ballpark” of this new problem you are trying to solve? Then you would start with the closest example you’ve seen and consider: how would I have to extend the example to cover my new problem?
I believe that’s how pretty anyone would approach a new problem: try to find a worked example that is as close as you can find and then think about what that method doesn’t cover and how you could add that. So maybe you really do already have more knowledge than you believe: you just have to frame it in the right way.