Based on your question, you can use ngChange to watch changes of baseValue
and trigger the function.
HTML
<section class="content row" ng-repeat="item in data">
Name: {{item.name}} <br/>
BaseValue: <input type="text" ng-model="item.baseValue" ng-change="baseValueChange(item.baseValue)"/>
</section>
Controller
$scope.baseValueChange = function(baseValue) {
console.log("base value change", baseValue);
}
If you a more sophisticated version which can get oldValue and newValue, you can refer to this plunkr – http://plnkr.co/edit/hqWRG13gzT9H5hxmOIkO?p=preview
HTML
<section class="content row" ng-repeat="item in data">
Name: {{item.name}} <br/>
BaseValue: <input type="text" ng-init="item.oldBaseValue = item.baseValue" ng-model="item.baseValue" ng-change="baseValueChange(item.oldBaseValue, item.baseValue); item.oldBaseValue = item.baseValue"/>
</section>
Controller
$scope.baseValueChange = function(oldVal, newVal) {
console.log("base value change", oldVal, newVal);
}