Open ychong opened 6 years ago
Thanks! I'll look into this. Do you know where specifically you want this changed?
Hi Nick thanks for replying. Yes I didn't make it clear earlier. It's just clearer syntax. You can change it under Chapter 07 Neural Network - improving_linear_regression.py, and other similar implementation as well.
Hi Everyone could you please let me know for the classification part is the following data set suitable to build classification model for point Cloud. https://shapenet.cs.stanford.edu/media/modelnet40_ply_hdf5_2048.zip,
thanks
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New: test_indices = list(set(range(len(texts))) - set(train_indices))
Old: test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))