전체 글
-
[Pytorch]ResNet(전차학습모델)컴퓨터비전/pytorch 2023. 1. 13. 23:09
CNN은 레이어가깊어지면 기울기 소실이 쉽게 일어난다 그래서 전에있던값을 재탕함으로써 기울기를 살리는 기법 Block부분 class BasicBlock(nn.Module): def __init__(self,input_dim,output_dim, stride = 1): super(BasicBlock,self).__init__() self.conv1=nn.Conv2d(input_dim,output_dim,3,1,1) self.conv2=nn.Conv2d(output_dim,output_dim,3,1,1) self.bn1=nn.BatchNorm2d(output_dim) self.bn2=nn.BatchNorm2d(output_dim) self.relu1=nn.ReLU() self.relu2=nn.ReLU() s..
-
[Flutter] get and set웹 and 앱 프로그래밍/Flutter 2022. 12. 28. 21:09
Flutter에선 private로 선언 되어있어도(public선언이 없는 class) 같은 파일에만 있다면 값을 공유할수있다. 그러나 같은 파일에 없는 값에 접근할때는 get set을 사용한다. (C++같은 언어에서는 직접 함수를 만들어야하지만 Flutter에서는 간단하게 선언할수있다) int? set Get_Set_Number=> this._Get_Set_Number;//=>은 앞에 함수가 리턴할값(this._Get_Set_Number)을 의미 int? get Get_Set_Number(Value)=> this._Get_Set_Number= Value;//변수값(this._Get_Set_Number) 변경 (this란 클래스 자기자신을 의미)
-
[Flutter]Scaffold웹 and 앱 프로그래밍/Flutter 2022. 12. 24. 21:31
Scaffold 의기본 구성 EX) Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Sample Code'), ), body: Center( child: Text('You have pressed the button $_count times.'), ), bottomNavigationBar: BottomAppBar( child: Container( height: 50.0, ), ), floatingActionButton: FloatingActionButton( onPressed: () => setState(() { _count++; }), tooltip: 'Increment Counter', child: Ic..