I'm a newbie in python. I have model.ckpt file. I want to convert that model to core ML model .mlmodel to using in iOS project. I have spent a lots of time to research but I don't know how to do it. Someone told me use coremltools but I could not find tutorial how to do that. This code bellow is not work.
coreml_model = coremltools.converters.keras.convert('./model.ckpt',
input_names='image',
image_input_names='image',
output_names='output',
class_labels=['1', '2'],
image_scale=1/255)
coreml_model.save('abc.mlmodel')