for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from . import NeuralLayer
class Reshape(NeuralLayer):
"""
Reshape layer.
def __init__(self, pattern):
super(Reshape, self).__init__("dimshuffle")
self.pattern = pattern
def compute_tensor(self, x):
return x.reshape(self.pattern)