示例#1
0
 def __init__(self):
     self.augment = Compose([
         AddNoise(A=0.1),
         RandomAmplitude(l=0.9, h=1.1),
         FlowNormalize(),
         AddAxis()
     ])
示例#2
0
 def __init__(self):
     self.augment = Compose([
         AddNoise(A=0.1),
         RandomAmplitude(l=0.9, h=1.1),
         RedShift(ori_len=2600, beta=0.8),
         FlowNormalize(),
         AddAxis()
     ])
 def __init__(self, start_point,end_point):
     self.augment = Compose([
         ShiftCrop(start_point=start_point,end_point=end_point),
         FlowNormalize(),
         AddAxis()
     ])
示例#4
0
 def __init__(self):
     self.augment = Compose([FlowNormalize(), AddAxis()])