當前位置: 首頁>>代碼示例>>Python>>正文


Python Data.expand_array_in_blocks方法代碼示例

本文整理匯總了Python中Data.expand_array_in_blocks方法的典型用法代碼示例。如果您正苦於以下問題:Python Data.expand_array_in_blocks方法的具體用法?Python Data.expand_array_in_blocks怎麽用?Python Data.expand_array_in_blocks使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Data的用法示例。


在下文中一共展示了Data.expand_array_in_blocks方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: next

# 需要導入模塊: import Data [as 別名]
# 或者: from Data import expand_array_in_blocks [as 別名]
 def next(self):
     if self.f_index >= self.dataset.get_n_files() or self.f_index > self.max_files:
         raise StopIteration
     else:
         self.f_index += 1
         f_number = self.file_order[self.f_index - 1]
         acoustics_file = self.dataset.get_input_file(f_number)
         acoustics = Data.expand_array_in_blocks(acoustics_file, self.dataset.n_frames, self.dataset.frame_shift)
         if self.dataset.has_output():
             i = 0
             output = []
             times = self.dataset.get_output_times_file(f_number)
             labels = self.dataset.get_output_values_file(f_number)
             for j in xrange(
                 Data.n_blocks(acoustics_file.shape[0], self.dataset.n_frames, self.dataset.frame_shift)
             ):
                 while (self.dataset.n_frames // 2 + j) >= times[i][1] and i < len(times) - 1:
                     i += 1
                 output.append(labels[i])
             x = [acoustics, np.array(output)]  # Get label for each t
         else:
             x = [acoustics]
         if self.return_path:
             x.append(self.dataset.get_file_path(f_number))
         return tuple(x)
開發者ID:Irene-Li,項目名稱:susyML,代碼行數:27,代碼來源:SpeechDataset.py

示例2: feedforward

# 需要導入模塊: import Data [as 別名]
# 或者: from Data import expand_array_in_blocks [as 別名]
 def feedforward(x):
     for i, l in enumerate(layers):
         if i == 0:
             blocks = Data.expand_array_in_blocks(x, dataset.n_frames, dataset.frame_shift)
             x = l.feedforward(blocks.T).T.copy()
         else:
             x = l.feedforward(x.T).T.copy()
     return x
開發者ID:Irene-Li,項目名稱:susyML,代碼行數:10,代碼來源:SpeechDataset.py


注:本文中的Data.expand_array_in_blocks方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。