Tirth Patel

Results 7 comments of Tirth Patel

I am also facing an issue with the conversion of the EfficientNet model. It gives an error: ``` tf executing eager_mode: True tf.keras model eager_mode: False --------------------------------------------------------------------------- ValueError Traceback (most...

Hi @jhelsas, I have tried a slightly different approach to convert Keras model to Onnx. To give an overview, I have done transfer learning on the [Keras EfficientNet model](https://keras.io/api/applications/efficientnet/). First,...

Hey @tomasekisde, you would not be able to get the `npy` file as it is a [NumPy array of preprocessed data](https://github.com/gregwchase/eyenet/blob/1177eddfea761ddf7973fdcc6c46fdec9cc26f6e/src/image_to_array.py#L67) which you have to make by following preprocessing steps...

Setting proper timezone and timeZoneOffset i.e `const timeZone` and `const timeZoneOffset` works for me. Find your timezone here:- https://www.zeitverschiebung.net/en/

The plot_all_weights methods is also not working. it shows that the the conv2D does not contain weights ![screen shot 2018-08-28 at 8 44 08 pm](https://user-images.githubusercontent.com/39476447/44732649-6276bb00-ab03-11e8-8c6b-5988b15ed46b.png) And in plot_weight the plotted...

Below is the snippet from my `pyproject.toml` package versions: ```toml python = "^3.12.3" langchain = "0.2.5" langgraph = "^0.0.69" pydantic-settings = "^2.2.1" langchain-cohere = "0.1.8" tiktoken = "0.7.0" chromadb =...

The [latest](https://api.python.langchain.com/en/latest/chat_models/langchain_cohere.chat_models.ChatCohere.html#langchain_cohere.chat_models.ChatCohere.with_structured_output) `ChatCohere` class version and `with_structured_output` method do not include a `method` keyword argument. ![image](https://github.com/langchain-ai/langchain/assets/39476447/fc56822a-ca7c-4974-aab1-b041e56df042) However, the[ LangChain documentation](https://python.langchain.com/v0.2/docs/how_to/extraction_examples/#create-an-extractor) example uses the `method` and `include_raw` variables. ![image](https://github.com/langchain-ai/langchain/assets/39476447/3299c067-83c7-4860-8d52-92331006aa5c)