Giter Club home page Giter Club logo

Comments (1)

vedharshita avatar vedharshita commented on May 27, 2024 1

The solution that worked is - converting all dtypes to object type in data that you pass inside aggregate function, instead of having mixed dtypes like string, int, float etc. You can leave 'y' as-is.

train_orders = train_orders.astype({'ds': 'object',
'country': 'object',
'state': 'object',
'city': 'object',
'county': 'object',
'y': 'int64'})
aggregate(train_orders, spec)

My error -
_Cell In[32], line 118, in aggregate1(df, spec, is_balanced)
116 y_bottom = y_bottom.reshape(len(S_df.columns), len(dates))
117 print(y_bottom.shape)
--> 118 y_bottom_mask = np.isnan(y_bottom)
119 y_agg = Agg @ np.nan_to_num(y_bottom)
120 y_agg_mask = Agg @ y_bottom_mask

File ~/anaconda3/envs/python3/lib/python3.10/site-packages/pandas/core/arrays/masked.py:528, in BaseMaskedArray.array_ufunc(self, ufunc, method, *inputs, **kwargs)
526 for x in inputs:
527 if isinstance(x, BaseMaskedArray):
--> 528 mask |= x._mask
529 inputs2.append(x._data)
530 else:

ValueError: operands could not be broadcast together with shapes (160,) (160,61) (160,)_

from hierarchicalforecast.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.