Android Studio's tflite input

Hello! I am trying to input the csv file I have downloaded from google drive. But I don’t know how to change it. The code below is for accessing the drive and downloading the file (autumnTainan1):

download.setOnClickListener{
            download("https://drive.google.com/drive/u/0/folders/1aBy0WtyaETkfD3YxZo73iQaFa2aGzwY8")
        }
private fun download(url: String?) {
        val request = DownloadManager.Request(Uri.parse(url))
        request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
        request.setDestinationInExternalFilesDir(this, Environment.DIRECTORY_DOCUMENTS, "autumnTainan1")
        request.allowScanningByMediaScanner()
        val downloadManager = getSystemService(DOWNLOAD_SERVICE) as DownloadManager
        downloadManager.enqueue(request)
    }

This is tflite code in kotlin:

val model = Irrad5autumn.newInstance(context)

// Creates inputs for reference.
val inputFeature0 = TensorBuffer.createFixedSize(intArrayOf(1, 24, 5), DataType.FLOAT32)
inputFeature0.loadBuffer(byteBuffer)

// Runs model inference and gets result.
val outputs = model.process(inputFeature0)
val outputFeature0 = outputs.outputFeature0AsTensorBuffer

// Releases model resources if no longer used.
model.close()

I just want to say that I tried making a 2D array with dimensions 30x126 and it gives an error.

Hello! Thank you for checking!!! The data that I am using uses 4 locations (columns) as input (because this one is for forecasting), here is the link for the file:
https://drive.google.com/drive/folders/1YBiIteUGk7oSniCfEY3Ox4ysgSLDEvWU?usp=sharing