nn.rule

作者: 乔大叶_803e | 来源:发表于2019-12-16 10:27 被阅读0次
    import torch
    import torch.nn as nn
    
    #inplace为True,将会改变输入的数据 ,否则不会改变原输入,只会产生新的输出
    m = nn.ReLU(inplace=True)
    input = torch.randn(7)
    
    print("输入处理前图片:")
    print(input)
    
    output = m(input)
    
    print("ReLU输出:")
    print(output)
    print("输出的尺度:")
    print(output.size())
    
    print("输入处理后图片:")
    print(input)
    

    执行后输出为

    输入处理前图片:
    tensor([ 1.4940,  1.0278, -1.9883, -0.1871,  0.4612,  0.0297,  2.4300])
    ReLU输出:
    tensor([ 1.4940,  1.0278,  0.0000,  0.0000,  0.4612,  0.0297,  2.4300])
    输出的尺度:
    torch.Size([7])
    输入处理后图片:
    tensor([ 1.4940,  1.0278,  0.0000,  0.0000,  0.4612,  0.0297,  2.4300])
    
    

    inplace为True,将会改变输入的数据 ,否则不会改变原输入,只会产生新的输出

    相关文章

      网友评论

          本文标题:nn.rule

          本文链接:https://www.haomeiwen.com/subject/hnprnctx.html