We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd5719 commit 89453a7Copy full SHA for 89453a7
deep_keyphrase/copy_cnn/__init__.py
@@ -0,0 +1 @@
1
+# -*- coding: UTF-8 -*-
deep_keyphrase/copy_cnn/model.py
@@ -0,0 +1,20 @@
2
+import torch.nn as nn
3
+
4
5
+class CopyCnnModel(nn.Module):
6
+ def __init__(self):
7
+ super().__init__()
8
9
+ def forward(self):
10
+ pass
11
12
13
+class CopyCnnEncoder(nn.Module):
14
15
16
17
18
+class CopyCnnDecoder(nn.Module):
19
20
deep_keyphrase/copy_cnn/train.py
0 commit comments