Python fuel.transformers.Transformer() Examples
The following are 1
code examples of fuel.transformers.Transformer().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
fuel.transformers
, or try the search function
.
Example #1
Source File: run.py From ladder with MIT License | 5 votes |
def __init__(self, data_stream_labeled, data_stream_unlabeled, **kwargs): super(Transformer, self).__init__(**kwargs) self.ds_labeled = data_stream_labeled self.ds_unlabeled = data_stream_unlabeled # Rename the sources for clarity self.ds_labeled.sources = ('features_labeled', 'targets_labeled') # Rename the source for input pixels and hide its labels! self.ds_unlabeled.sources = ('features_unlabeled',)