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
76 raw_arrays = self.raw_price_loader.load_raw_arrays(
---> 77 colnames, 78 start_date, 79 end_date,
的结果是272 ×3040 ---> 82 adjustments = self.adjustments_loader.load_adjustments( 83 colnames, 84 dates, 之后运行到 for c, c_raw, c_adjs in zip(columns, raw_arrays, adjustments): 时 c_adjs对应的矩阵是279 × 3040 不匹配,于是报错 ValueError: Mask shape (279, 3040) != data shape (272, 3040).
读取数据的时限为 2017-1-1 到2017-10-30 , 用的bundle是tdx注入的
The text was updated successfully, but these errors were encountered:
No branches or pull requests
---> 77 colnames,
78 start_date,
79 end_date,
的结果是272 ×3040
---> 82 adjustments = self.adjustments_loader.load_adjustments(
83 colnames,
84 dates,
之后运行到 for c, c_raw, c_adjs in zip(columns, raw_arrays, adjustments):
时 c_adjs对应的矩阵是279 × 3040
不匹配,于是报错 ValueError: Mask shape (279, 3040) != data shape (272, 3040).
读取数据的时限为 2017-1-1 到2017-10-30 , 用的bundle是tdx注入的
The text was updated successfully, but these errors were encountered: