I am running in the same issue
5 Matching Annotations
- Last 7 days
-
github.com github.com
-
-
github.com github.com
-
i had the same problam
-
-
github.com github.com
-
same problem here. i put my pinecone key and region in the .env file but autogpt only uses localmemory and never writes anything to a file. It also seems to forget what it has already researched after a few steps.
-
- Sep 2025
-
github.com github.com
-
Standalone code to reproduce the issue
-
- Aug 2025
-
github.com github.com
-
import tensorflow as tf import tensorflow_hub as hub mobilenet_v2 = "https://tfhub.dev/google/tf2-preview/mobilenet_v2/classification/4" inception_v3 = "https://tfhub.dev/google/imagenet/inception_v3/classification/5" classifier_model = mobilenet_v2 # @param ["mobilenet_v2", "inception_v3"] {type:"raw"} IMAGE_SHAPE = (224, 224) classifier = tf.keras.Sequential([ hub.KerasLayer(classifier_model, input_shape=IMAGE_SHAPE + (3,)) ]) link to notebook: "https://colab.research.google.com/github/tensorflow/docs/blob/master/site/en/tutorials/images/transfer_learning_with_hub.ipynb"
-