• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/ml/model/base.php
  • Класс: Bitrix\Crm\Ml\Model\Base
  • Вызов: Base::setMlModel
public function setMlModel(Model $mlModel): void
{
	if ($this->mlModel)
	{
		throw new SystemException('ML model is already associated with the scoring model');
	}

	$this->mlModel = $mlModel;
}