Tanmay Mohapatra

Results 139 comments of Tanmay Mohapatra

The python equivalents are: - parsing ops: https://github.com/tensorflow/tensorflow/blob/r1.7/tensorflow/python/ops/parsing_ops.py - batchnorm: https://github.com/tensorflow/tensorflow/blob/r1.7/tensorflow/python/layers/normalization.py I could see some others plugged in at `ops/*.jl` files, but haven't quite understood the exact mechanics yet.

Oh those are basically the parse example methods in parsing_ops.py

Sorry for not being clear. Maybe I should point you to the python implementation of what I am trying to run on TensorFlow.jl: https://github.com/tensorflow/tpu/tree/master/models/experimental/resnet_bfloat16 There's a call to `parse_single_example` here:...

I see now that `parse_single_example` can be gotten with: ``` julia> import_op("ParseSingleExample") parse_single_example (generic function with 1 method) help?> Ops.parse_single_example No documentation found. TensorFlow.Ops.parse_single_example is a Function. # 1 method...

From what I understand, this looks like the `Dict` used to store members of a protobuf struct? E.g. [this](https://github.com/JuliaIO/ProtoBuf.jl/blob/40bdf4d74a584420fb3dd3c6a5d05275eead599c/test/services/testsvc_pb.jl#L7)? Would you be able to check/put up a more detailed profiler...

I was hoping that some sort of lightweight dict could be used here, but that has not happened yet unfortunately. @NHDaly has rightly pointed out reasons for switching to a...

Thanks. Related: #12. Is there a spec outlining the text format? That's primarily what has prevented implementing this.

> It would be even more convenient if one could run it from a project which has ProtoBuf as a dependency without having to install it to the main/default environment....

Should work with `v0.10.0` or `v0.9.1`. But that needs re-generating the julia code from proto files using the updated ProtoBuf.jl. (In hindsight, should probably have bumped minor version instead of...