Niraj Singh
Niraj Singh
@casassg, linter failure is changed to warnings and github CI action will continue to run even if linter fails as per above [comment](https://github.com/tensorflow/tfx/issues/4434#issuecomment-1209218191). Kindly let us know if this issue...
@robertlugg, [TFX official documentation](https://www.tensorflow.org/tfx/tutorials/tfx/python_function_component#setup) states that `TFX requires Python 3`. Also, for more info we can refer to [PyPI website](https://pypi.org/project/tfx/) stating Python version requirements for TFX `Requires: Python >=3.7,
@mygithubid1, Can you please take a look at the above comment by @jiyongjung0 and let us know if your issue is resolved. Thank you!
@SoumyajitMukherjee-droid, In order to expedite the trouble-shooting process, please provide more details on the issue reported here. Thank you!
Closing as this issue is in "awaiting response" status for more than 14 days. Please post your comments(if you still have queries on this) and we will reopen this issue....
@piriyacoco, Instead of using `trainable = True`, load the model with `trainable = False`, unfreeze the model and set the bottom layers to un-trainable as mentioned [here](https://www.tensorflow.org/tutorials/images/transfer_learning#fine_tuning). You can also...
@piriyacoco, I tried the same code with below TF versions and I cannot reproduce the error. I am loading the model with `trainable = True` parameter. Please check the gist...
Hey @captSteveRogers, Can you please share the error you are getting in terminal while the kernel dies and restarts? This will help us in debugging the issue. Also, you can...
This error implies you are running out of memory or in other case a process is allocated a large memory portion that some is left unoccupied and cannot be used...
@mehransi, For documentation on `tensorflow_intra_op_parallelism` and `tensorflow_inter_op_parallelism`, you can refer to [TF config.proto](https://github.com/tensorflow/tensorflow/blob/26b4dfa65d360f2793ad75083c797d57f8661b93/tensorflow/core/protobuf/config.proto#L165) file and [GeneralBestPractices](https://github.com/IntelAI/models/blob/master/docs/general/tensorflow_serving/GeneralBestPractices.md) doc. Answering your questions below. 1. Independent Ops are operations that are independent in...