Hail import_table() method assigns all of the columns as str data type.
Is there any ways to read table with type imputation in hail?
Yep!
import_table("my-file.csv", impute=True)
For more information, take a look at the docs for import_table
(the Notes section in particular covers some details of type imputation).