Pessoal quando entro com o código abaixo, tenho erro. Poderiam me ajudar?
#Verificando resultados
predicao_cliente_joana = rf_otimizado2.predict(cliente_joana)
np.expm1(predicao_cliente_joana)
OUTPUT
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-99-e1868ec6b57f> in <cell line: 2>()
1 #Verificando resultados
----> 2 predicao_cliente_joana = rf_otimizado2.predict(cliente_joana)
3 np.expm1(predicao_cliente_joana)
3 frames
/usr/local/lib/python3.10/dist-packages/sklearn/base.py in _check_feature_names(self, X, reset)
479 )
480
--> 481 raise ValueError(message)
482
483 def _validate_data(
ValueError: The feature names should match those that were passed during fit.
Feature names unseen at fit time:
- bedrooms
- parkingSpaces
- unit_Apartamento
- unit_Casa
- unit_Outros
Feature names seen at fit time, yet now missing:
- features_bedrooms
- features_parkingSpaces
- types_unit_Apartamento
- types_unit_Casa
- types_unit_Outros