0

I'm creating a model to forecast real estate price using DeepAr. I have monthly values from 2000 until today. I would like to forecast the value in the next 2 years. So, its to forecast unknown future target values with gluonts DeepAR.

The model is created using:

estimator = DeepAREstimator(prediction_length=24, context_length=120, freq = "M", trainer=Trainer())

train_output = estimator.train_model(subset_train_list)

I want to predict the next 2 years with : train_output.predict(subset_test_list) corresponding of units with target values until today but I get this error :

AttributeError: 'TrainOutput' object has no attribute 'predict'

Mathilde Roblot
  • 41
  • 1
  • 1
  • 4

0 Answers0