Hi, I was able to load the model from weight.h5 and using arch.txt. Now I want to test this model by giving some sample inputs. I tried
model.predict('123456789')
but I am getting input size mismatch. It is expecting input shape to be (None, 10,51) but I am not sure how to convert my input string '123456789' to that shape. I tried to look into the code and found that you are using encode_many and encode_into methods for encoding. But I was not able to get the desired embedding for my input, kindly help