3D points data scatter plot import pickle# Load tensor from the filewith open('tensor.pkl', 'rb') as f: loaded_tensor = pickle.load(f)grids = loaded_tensor[0] # num_cams x num_depth x H x W x 3grids = grids.view(-1, 3).to('cpu').numpy()import plotly.graph_objects as go# Sample data: sequence of 3D points (x, y, z)x_points = list(grids[:, 0])y_points = list(grids[:, 1])z_points = list(grids[:, 2])# Create a 3D scatter pl.. 더보기 Would/Could/Should + have + p.p 일어나지 않은 일해 대해 말할때 (1) Would have pp : ~했을 것이다.ex) I thought she would have given it back to you : 그녀가 너에게 돌려줬을거라 생각했다. (2) Should have pp : ~했어야 했다.ex) She should have given it back to you : 그녀는 너에게 돌려줬어야 했다. (3) Could have pp : ~할 수 있었다.ex) You could have told her : 너는 그녀에게 말할 수 있었다. 더보기 Vague / Ambiguous 둘다 '모호한' 이라는 (영-한) 사전적의미를 가지고 있으나 그 뉘앙스는 다르다. 1) Vague : 정보가 불충분 해서 모호함ex) Her instruction is vauge so I don't know what to do 2) Ambiguous : 여러가지 뜻으로 해석될 수 있어서 모호함.ex) The sentence was ambiguous so I wasn't sure if he was joking or serious. 더보기 이전 1 2 3 4 ··· 65 다음