osuossu8 / KaggleRFCX

1 stars 0 forks source link

Discussion Memo #1

Open osuossu8 opened 3 years ago

osuossu8 commented 3 years ago

スレッドタイトル

メモ


ぶらさがってるコメントなど


それらを受けてのアイデア、コメントなど

osuossu8 commented 3 years ago

How to use SED

メモ

How to train

Feature extractor

How to predict

pip install efficientnet_pytorch

from efficientnet_pytorch import EfficientNet

class feature_extractor(nn.Module):
    def __init__(self, original):
        super().__init__()
        self.model = original
    def forward(self, x):
        x= self.model.extract_features(x)
        return x

class PANNsCNN14Att(nn.Module):
    def __init__():
        self.Enet = feature_extractor(EfficientNet.from_pretrained('efficientnet-b0'))
    ...

    def cnn_feature_extractor(self, x):
        return self.Enet(x)

    def forward(self, input, mixup_lambda=None):
        x, frames_num = self.preprocess(input, mixup_lambda=mixup_lambda)
        x = torch.cat((x,x,x),1)

        x = self.cnn_feature_extractor(x)

        x = torch.mean(x, dim=3)
        ...

ぶらさがってるコメントなど


アイデア、コメントなど

osuossu8 commented 3 years ago

Methods that worked / did not work

メモ


ぶらさがってるコメントなど


それらを受けてのアイデア、コメントなど

osuossu8 commented 3 years ago

Smart RFCX audio cropping

メモ


ぶらさがってるコメントなど


それらを受けてのアイデア、コメントなど