[BangPypers] Require help

2019-09-23 Thread Bappa Bhalsing via BangPypers
Dear Bangpypers Members, Thanks for including me this group. I am nascent to Python Language and some queries related to python. I want to seek help from volunteer group member to evaluate my problem. Is there any one in this group who share personal email id so i can connect him/her directly. Or

[BangPypers] My querry

2019-09-24 Thread Bappa Bhalsing via BangPypers
Hello All, I am trying to run following program using python and i am getting error consistently. Please to resolve. input_file = '.\Desktop\height-weight.csv'import pandas as pd from pandas import DataFrame as df df = pd.read_csv(input_file)df.head() o/p is OK df('height') = df['Height(inches)'].

[BangPypers] Help to execute code

2020-06-30 Thread Bappa Bhalsing via BangPypers
Hello Bangpypers, I am struck up with using below code, as it take long time on Google Colab. embeddings = []for i in range(metadata.shape[0]):  img_path =  metadata[i].image_path()  img = load_image(img_path)  img = (img /  255.).astype(np.float32)  img = cv2.resize(img, dsize = (224,224))   embed