Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 토픽모델링
- 리뷰
- nccl 업데이트
- length of stay
- timesfm
- 불규칙적 샘플링
- ERD
- pytorch
- gru-d
- pre-trained llm
- moirai
- nccl 설치
- ed boarding
- irregularly sampled time series
- operation management
- NTMs
- 패혈증 관련 급성 호흡곤란 증후군
- first pg on this rank that detected no heartbeat of its watchdog.
- Transformer
- GaN
- nccl 업그레이드
- m/m/s
- queueing theory
- multi gpu
- 대기행렬
- timellm
- 의료정보
- Time Series
- 딥러닝
- 분산 학습
Archives
- Today
- Total
목록특정 layer (1)
데알못정을
신경망 특정 layer 결과 값 출력하기
신경망에서 특정 layer의 결과 값을 출력할 수 있다. 최근 신경망 관련 연구를 하다가, 신경망의 각 layer의 결과 값이 input data 대비 어떻게 representation 되는지 확인하기 위해 이 작업이 필요 했다. [전체 코드] class MLPclassifier(nn.Module): def __init__(self, input_size, drop_rate): super(MLPclassifier, self).__init__() self.input_size = input_size layer1 = [nn.Linear(input_size, 39), nn.BatchNorm1d(39), nn.Dropout(drop_rate), nn.ReLU()] layer2 = [nn.Linear(39, 72),..
Coding
2022. 10. 3. 17:21