You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, even I am facing a similar error where the dependency graph calls an infinite loop at new_indices = mapping(new_indices) step. This error starts to occur around the third group, specifically in the attention layer. I am using Restormer architecture : https://github.com/swz30/Restormer/blob/main/basicsr/models/archs/restormer_arch.py.
Any help or idea on this @VainF ?
您好,当我在计算group时添加全连接层Linear(in_features=84, out_features=128, bias=False)时,发现layer的idx为[(264, 0), (265, 1), (266, 2), (267, 3), (268, 4), (269, 5), (270, 6), (271, 7), (272, 8), (273, 9), (274, 10), (275, 11), (276, 12), (277, 13), (278, 14), (279, 15), (280, 16), (281, 17), (282, 18), (283, 19), (284, 20), (285, 21), (286, 22), (287, 23), (288, 24), (289, 25), (290, 26), (291, 27), (292, 28), (293, 29), (294, 30), (295, 31), (296, 32), (297, 33), (298, 34), (299, 35), (300, 36), (301, 37), (302, 38), (303, 39), (304, 40), (305, 41), (306, 42), (307, 43), (308, 44), (309, 45), (310, 46), (311, 47), (312, 48), (313, 49), (314, 50), (315, 51), (316, 52), (317, 53), (318, 54), (319, 55), (320, 56), (321, 57), (322, 58), (323, 59), (324, 60), (325, 61), (326, 62), (327, 63)],而全连接层的输出通道为128,idx的索引溢出,请问原因是?
The text was updated successfully, but these errors were encountered: