Rasanluinterpreter loading import error

hi, in my app i import my interpreter like below,

nlu_interpreter = RasaNLUInterpreter('./models/nlu/default/current')

in my models folder, i have only some_file.tar.gz file

when i run my app it gives me this error

You need to untar some_file.tar.gz to access the nlu portion. You can place the untarred contents in a new folder. Use the command -

tar xvf ('./models/some_file.tar.gz') -C ('./models/some_file')

to place the untarred contents in some_file , and then give your interpreter the path -

('./models/some_file/nlu')