React报错之 Its return type ‘Element[]’ is not a valid JSX element
产生的原因:
1,函数组件返回的是Element数组,不是JSX元素。 2,如果组件返回的是JSX和null以外的值会提示类似’xxx’ cannot be used as a JSX componen…
# GLM 块包括注意力层、FFN层和之间的残差
class GLMBlock(torch.nn.Module):"""A single transformer layer.Transformer layer takes input with size [s, b, h] and returns anoutput of the same size."""def __init__(self, config: ChatGL…