About


알려주고 싶은 정보를 작성해주세요!


닉네임을 알려주세요!
추후 문서 작성시 기여자로 나타납니다.


RDBMS

기타
RDBMS는 Relational DataBase Management System의 약자로 관계형 모델을 기반으로 한 DBMS 유형입니다. RDBMS 테이블들은 서로 연관되어 있어 DBMS보다 효율적으로 데이터를 구성 및 관리할 수 있고, 정규화를 통해 데이터 중복을 최소화하여 트랜잭션을 쉽게 수행하게 해줍니다. 모든 데이터는 2차원 테이블 형태이며 MSSQL, MySQL, Oracle등이 RDBMS의 대표적인 예시입니다.
#DBA #백엔드 개발자
import torch
  class MyModule(torch.nn.Module):

    def __init__(self, N, M):
      super(MyModule, self).__init__()
      self.weight = torch.nn.Parameter(torch.rand(N, M))

    def forward(self, input):
      if input.sum() > 0:
        output = self.weight.mv(input)
      else:
        output = self.weight + input
      return output