I am trying to store a vector using Django in Sqlite3 using the following Model Field
vector = models.CharField(validators=[int_list_validator(sep=' ', allow_negative=True)], max_length=256)
and the corresponding Serializer Field
vector = serializers.CharField()
Before saving the instance the vector has a shape of (1,128) and on retrieval from database it isn't of required shape.
Is it the correct way of saving a vector or an alternate solution exists?
Thanks for your help!