We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am not sure of the root cause but it seems this pipeline:
is producing this execution:
The text was updated successfully, but these errors were encountered:
I know this issue. This happens when there are multiple return statements in your operation's execute method.
Sorry, something went wrong.
Hmm... The ComputeFeatures operation doesn't have multiple return statements but it seems like it might be related:
ComputeFeatures
from keras.models import Model class ComputeFeatures(): def __init__(self, model): self.model = model def execute(self, dataset, weights): self.model.set_weights(weights) X = dataset['X'] y = dataset['y'] feature_model = Model(inputs=self.model.inputs, outputs=self.model.layers[-2].output) feat = feature_model.predict(X) new_dataset = {'X': feat, 'y': y} return new_dataset
Ignore other node children when fetching IO containers. Fixes #2000
1344632
c69e855
No branches or pull requests
I am not sure of the root cause but it seems this pipeline:
![DeepinScreenshot_select-area_20210311121924](https://user-images.githubusercontent.com/4982789/110835039-e4fb9c00-8263-11eb-8cb6-1b203c0d44f4.png)
is producing this execution:
![DeepinScreenshot_select-area_20210311121452](https://user-images.githubusercontent.com/4982789/110834729-859d8c00-8263-11eb-98cd-212f69111e5d.png)
The text was updated successfully, but these errors were encountered: