Question 22
Given below code to load a huge file name as filename.csv and this file is not loading at once in the system which parameter should be added to pd.read_csv to load this file ?
import pandas as pdfrom sklearn.linear_model import SGDRegressorfor train_df in pd.read_csv("filename.csv", __________=1024): X = train_df.iloc[:, :-1] y = train_df.iloc[:, -1] model = SGDRegressor() model.partial_fit(prep_X,y)