if @matched_entities[target_name]
      @matched_entities[target_name][:count] += 1
    else  # Try to find an existing Entity matching the imported data
      target, score = match_target_entity(target_name)
      @matched_entities[target_name] = { count: 1, object: target, score: score }