Using in-place layers makes it impossible to see the state of an individual layer, so this script rewrites them into each having their own output layer.
8 lines
111 B
Makefile
8 lines
111 B
Makefile
MKDIR=mkdir -p
|
|
|
|
all: generated
|
|
|
|
generated: $(wildcard proto/*.proto)
|
|
$(MKDIR) $@
|
|
protoc --python_out="$@" $^
|