build_train_sequence_with_batch_size

wanggaige21
Level 1
build_train_sequence_with_batch_size

Dear experts,

Where can I find detailed api parameters information of deep learning related functions?

Such as "build_train_sequence_with_batch_size", I want to manually edit the training targets.

 

Best Regards

 

Wang Gaige

0 Kudos
2 Replies
AlexT
Dataiker

Hi,
You can find an example of build_train_sequence_with_batch_size usage here :

https://doc.dataiku.com/dss/latest/machine-learning/deep-learning/advanced.html#build-sequence

Thanks, 

0 Kudos
wanggaige21
Level 1
Author

Hi, AlexT,

 

Thanks for your answer. But what I want to do is changing the training input, such as the one hot encoding results. I need to know how to get the output of this function, which is similar to keras codes.

class MyDataFrameIterator(image.DataFrameIterator):

def __getitem__(self, idx):
X_, y_ = super().__getitem__(idx)
y_ = np.delete(y_, self.class_indices['Negative'], axis=1)
return X_, y_

def next(self):
X_, y_ = super().next()
y_ = np.delete(y_, self.class_indices['Negative'], axis=1)
return X_, y_

0 Kudos