コード例 #1
0
 def __init__(self,const):
     super(ConcatSVM,self).__init__()
     self.const = copy.deepcopy(const)
     self.mlp = pytorch_layers.create_mlp(self.const.mlp_const)
     self.bn = nn.BatchNorm1d(self.const.mlp_const['in_dim'])
     print('2D-SVM')
     self.w = nn.Parameter(torch.FloatTensor([0,0,0]))
コード例 #2
0
ファイル: concat_svm.py プロジェクト: gqh1995/vico
 def __init__(self, const):
     super(ConcatSVM, self).__init__()
     self.const = copy.deepcopy(const)
     self.mlp = pytorch_layers.create_mlp(self.const.mlp_const)
     self.bn = nn.BatchNorm1d(6)
コード例 #3
0
 def __init__(self, const):
     super(VerbGivenBoxesAndObjectLabel, self).__init__()
     self.const = copy.deepcopy(const)
     self.mlp = pytorch_layers.create_mlp(self.const.mlp_const)
 def __init__(self,const):
     super(VerbGivenObjectAppearance,self).__init__()
     self.const = copy.deepcopy(const)
     self.mlp = pytorch_layers.create_mlp(self.const.mlp_const)
コード例 #5
0
 def __init__(self, const):
     super(VerbGivenHumanPose, self).__init__()
     self.const = copy.deepcopy(const)
     self.mlp = pytorch_layers.create_mlp(self.const.mlp_const)