Tirth Patel
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  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.  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. 