how to change the title of tag page?

You can use the get_the_archive_title filter, such as:

add_filter('get_the_archive_title', function($title) {
  if(is_tag()) {
    /* logic to set $title to what you want */
  }
  return $title;
});

Take a look at get_the_archive_title() reference for more information on how to use this filter.