IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
소스 검색

Added weight_variable_glorot

pull/2/head
Stanislaw Adaszewski 4 년 전
부모
커밋
add6670eb9
3개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      .gitignore
  2. +0
    -0
      decagon_pytorch/convolve.py
  3. +13
    -0
      decagon_pytorch/weight.py

+ 2
- 0
.gitignore 파일 보기

@@ -0,0 +1,2 @@
__pycache__


+ 0
- 0
decagon_pytorch/convolve.py 파일 보기


+ 13
- 0
decagon_pytorch/weight.py 파일 보기

@@ -0,0 +1,13 @@
import torch
import numpy as np
def weight_variable_glorot(input_dim, output_dim):
"""Create a weight variable with Glorot & Bengio (AISTATS 2010)
initialization.
"""
init_range = np.sqrt(6.0 / (input_dim + output_dim))
initial = -init_range + 2 * init_range * \
torch.rand(( input_dim, output_dim ), dtype=torch.float32)
initial = initial.requires_grad_(True)
return initial

불러오는 중...
취소
저장