Code Monkey home page Code Monkey logo

dl-practice's People

Contributors

wondrive avatar

Watchers

 avatar

dl-practice's Issues

[셀프Q&A] 파이토치 한 layer에서 grad 누적 여부?

질문

layer 한 개로 구성된 망이 있다고 가정했을 때,
만약 layer에서 x+x 하고, 또 x+x 하면 미분값은 2인지 4인지??

테스트

다음 소스로 테스트 해보았다.

x = torch.ones(1, requires_grad=True)`
layer1 = x+x
layer1 = x+x
out = layer1
out.backward()
print(x.grad)

결과는 2였다. 누적되지 않고 최종 계산 값만 보관한다.

또한

layer1 = x*x
print(layer1.grad_fn)

의 결과를 봐도 곱셈 연산만 저장이 되었음을 알 수 있다.

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.