We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import pandas as pd import numpy as np import timesfm as tf # Carica il file CSV df = pd.read_csv("file.csv", parse_dates=["Datetime"]) df = df.set_index("Datetime") # Configurazione del modello tfm = tf.TimesFm( context_len=128, # Contesto massimo (modificabile) horizon_len=5, # Orizzonte di previsione input_patch_len=32, output_patch_len=128, num_layers=20, model_dims=1280, backend="gpu", # Cambia in "cpu" se necessario )
I receive back:
TypeError: TimesFmBase.init() got an unexpected keyword argument 'context_len'
despite is the standard instruction were officially given . Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I receive back:
despite is the standard instruction were officially given . Thanks
The text was updated successfully, but these errors were encountered: