This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Disclamer: This program is a proof-of-concept, and I won't be liable for any damagaes caused by this program. | |
| # by: github.com/imthecurse | |
| import tensorflow as tf | |
| class GreedyAutoencoderBlock(tf.keras.layers.Layer): | |
| def __init__(self, units, use_bn=True, **kwargs): | |
| super().__init__(**kwargs) | |
| self.units = units | |
| self.use_bn = use_bn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| ) | |
| func main(){ |