class Pgvector::Vector

def self.from_text(string)

def self.from_text(string)
  Vector.new(string[1..-2].split(",").map(&:to_f))
end