You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to change my own data for processing. The data format is (2,2048,3) txt format. I want to ask what type of data is in this place.
def get_batch(dataset, idxs, start_idx, end_idx):
bsize = end_idx-start_idx
batch_data = np.zeros((bsize, NUM_POINT, 7))
batch_label = np.zeros((bsize, NUM_POINT), dtype=np.int32)
batch_smpw = np.zeros((bsize, NUM_POINT), dtype=np.float32)
What is the dataset type of da and tensor
The text was updated successfully, but these errors were encountered:
I want to change my own data for processing. The data format is (2,2048,3) txt format. I want to ask what type of data is in this place.
def get_batch(dataset, idxs, start_idx, end_idx):
bsize = end_idx-start_idx
batch_data = np.zeros((bsize, NUM_POINT, 7))
batch_label = np.zeros((bsize, NUM_POINT), dtype=np.int32)
batch_smpw = np.zeros((bsize, NUM_POINT), dtype=np.float32)
What is the dataset type of da and tensor
The text was updated successfully, but these errors were encountered: