// Copyright 2014 Thomas Müller // This file is part of HMMLA, which is licensed under GPLv3. package hmmla.hmm; public interface HmmTrainer { public HmmModel train(Model model); }