ben 3d matrislerin bir listede götüren bir işlevi, yazmaya çalışıyorum içine.. 4d matrisin
3d matris listesini dönüştürme böylece .. listedeki her eleman şeklini (rows,cols, some_scalar).
var. Ben yüzden output = (number_of_elements_in_matrix, rows,cols,some_scalar)
şimdiye kadar ben .. 4d matrisin içine yeniden şekillendirmek çalışıyorum ..
output = np.zeros((len(list_of_matrices), list_of_matrices[0].shape[0], list_of_matrices[0].shape[1],
list_of_matrices[0].shape[2]), dtype=np.uint8)
Nasıl değerlerle bu çıkış 4d tensörünü doldurmak biliyoruz olduğu
def reshape_matrix(list_of_matrices):
output = np.zeros((len(list_of_matrices), list_of_matrices[0].shape[0], list_of_matrices[0].shape[1],
list_of_matrices[0].shape[2]), dtype=np.uint8)
return output
@Divakar: evet .. bir iş yaptı .. Eğer cevap olarak yazmak istiyorsanız o? – Fraz