Question
How can I find the image named “a.png” by filtering the file name in Deep Learning?

If I use ‘a.png’, all the images will be found.

Answer
Using “/^a.png$/.test(filename)” will found the image “a.png” only.


Programming tip to allow for proper file name filtering in VisionPro Deep Learn's user interface
How can I find the image named “a.png” by filtering the file name in Deep Learning?

If I use ‘a.png’, all the images will be found.

Using “/^a.png$/.test(filename)” will found the image “a.png” only.

