Fix paths

This commit is contained in:
ixaxaar 2017-10-26 21:23:20 +05:30
parent 90365bd955
commit bf9b62b380
3 changed files with 6 additions and 4 deletions

View File

@ -1 +1,3 @@
#!/usr/bin/env python3
#!/usr/bin/env python3
from .dnc import DNC

View File

@ -9,8 +9,8 @@ from torch.nn.utils.rnn import pad_packed_sequence as pad
from torch.nn.utils.rnn import pack_padded_sequence as pack
from torch.nn.utils.rnn import PackedSequence
from util import *
from memory import *
from .util import *
from .memory import *
class DNC(nn.Module):

View File

@ -6,7 +6,7 @@ from torch.autograd import Variable as var
import torch.nn.functional as F
import numpy as np
from util import *
from .util import *
class Memory(nn.Module):