_Iām experimenting with your TimeGPT model, and Iām trying to forecast a table that has multiple unique_ids, that might depend on each other._
This is the sample data Iām working with:
The ds column is Month, and the y column is Activity.
_The main unique_id column is Currency Pair, but I also have the Account column that distinguishes the Activity._
To use the TimeGPT APIs, I tried to pivot the table on Account, and have something like this:
_df = df.pivot_table(index=['Month', 'Currency Pair'],_
columns='Account',
_values='Activity').reset_index()_
What can you recommend for my scenario where the value to forecast could depend on N other columns, and the model automatically infers the relationships/weights?