Tianshuo Deng
Tianshuo Deng
lol, just saw the same problem and spent an hour debugging. It happens with pandas version 1.4 which is just released yesterday. To workaround it, you can install `pip install...
@broken thanks for the quick reply I'm now encountering the checksum issue which probably is caused by https://github.blog/changelog/2023-01-30-git-archive-checksums-may-change/ I will update once the checksum issue go away.
Now I'm seeing different errors: ``` bazel-out/darwin_arm64-opt/bin/external/local_config_tf/include/tensorflow/core/framework/full_type.pb.h:17:2: error: This file was generated by an older version of protoc which is #error This file was generated by an older version of...
The protobuf version is 3.19.6 which is pulled by tensorflow-macos 2.10.0 ```sh (venv) ➜ text git:(4a098cd) ✗ conda list | grep proto protobuf 3.19.6 pypi_0 pypi ``` I don't have...
@ethiel how did you get a higher version of tensorflow-macos and a lower version of protobuf? Is the protobuf dependency pulled by tensorflow-macos? Or did you install it separately?
@broken I did run `prepare_tf_dep.sh` and it finishes successfully. After adding the `http_archive` of `com_google_protobuf` Now the error becomes ``` ERROR: /private/var/tmp/_bazel_tianshuo/5b5bef7c172bd140468d2c8b06d622ae/external/com_google_protobuf/BUILD:979:21: in blacklisted_protos attribute of proto_lang_toolchain rule @com_google_protobuf//:cc_toolchain: '@com_google_protobuf//:_internal_wkt_protos_genrule'...
I think I don't have a clear understanding of how protobuf libraries are used and linked in this case. It seems bazel-out/darwin_arm64-opt/bin/external/local_config_tf/include/tensorflow/core/framework/full_type.pb.h is downloaded from a http archive instead of...
Hi @SuryanarayanaY I think there is an error in your code. You were calling your function with `x`, instead you should pass in `embedding_with_mask`. The issue can be demonstrated [here](https://colab.research.google.com/drive/1VPip5MtoHBtlSCO2MwhfnrI9PcDBHw06#scrollTo=-zyBNjHmqpUV&line=5&uniqifier=1)....