Autocomplete in Jupyter Starting Part-way through the class name

How, in Jupyter, to bring up a pop-up list including “ImageClassifierData” if all I remember is “Data”?

I commonly face this challenge with Jupyter, where I don’t know how to get auto-complete help unless I know what the first letter is.

I’m glad you asked, because I just learnt this yesterday! It’s:

?*Data*

It doesn’t actually autocomplete, but it lists the matching names.

3 Likes

Awesome! Can also do things like “os.*dir*” to find the method “os.makedirs()”