I have installed kornia and imorting it like,
from kornia.color import *
import kornia.augmentation.functional as F_k
import kornia as K
but the second line is giving error
ModuleNotFoundError: No module named 'kornia.augmentation.functional'.
Also, this is my directory structure.
But I getting error
ModuleNotFoundError: No module named 'FewShot_models'
when I try to import from FewShot_models.manipulate import *.
I am following a code from github and trying to implement that.

kornia.augmentation.functionalwas removed in version 0.5.4 and the most of the functions are available throughkornia.augmentation.Regarding your second question, you need to add empty file named
__init__.pyto FewShot_models directory. Check this answer for details about__init__.py.