Open pjfalbe opened 1 year ago
OK, so it looks like the input names are:
image_bytes
andkey
and the output names are
key
,labels
, andscores
.I currently do not have any code that tests the DT_STRING
data type though, so this won't work quite yet. I didn't have a simple model to try it out on so that is why I left out support at the time. What is the underlying the model (that is, what was the model that this derives from so I can see the model documentation)? I would like to add an example for that so you can get something working faster.
From searching around, I believe that the data that goes into image_bytes
will need to be something like JPEG and the model will decode the data from that, but without the documentation, I can't try to reproduce it myself.
it is a vertex ai doing a auto ml is that what you mean? I could send the saved model to you.
On Thu, Aug 17, 2023, 12:09 PM Zaki Mughal [sivoais] < @.***> wrote:
OK, so it looks like the input names are:
- image_bytes and
- key
and the output names are
- key,
- labels, and
- scores.
I currently do not have any code that tests the DT_STRING data type though, so this won't work quite yet. I didn't have a simple model to try it out on so that is why I left out support at the time. What is the underlying the model (that is, what was the model that this derives from so I can see the model documentation)? I would like to add an example for that so you can get something working faster.
From searching around, I believe that the data that goes into image_bytes will need to be something like JPEG and the model will decode the data from that, but without the documentation, I can't try to reproduce it myself.
— Reply to this email directly, view it on GitHub https://github.com/EntropyOrg/perl-AI-TensorFlow-Libtensorflow/issues/22#issuecomment-1682662418, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABUZI7D3EDYNUP6OBWU5X2DXVZF4FANCNFSM6AAAAAA3UCSDXA . You are receiving this because you authored the thread.Message ID: @.*** com>
Disclaimer
The information contained in this communication from the sender is confidential. It is intended solely for use by the recipient and others authorized to receive it. If you are not the recipient, you are hereby notified that any disclosure, copying, distribution or taking action in relation of the contents of this information is strictly prohibited and may be unlawful.
This email has been scanned for viruses and malware, and may have been automatically archived. Cassens
it is a vertex ai doing a auto ml is that what you mean?
What I mean: is there a model that this is a fine-tuning of or is this directly one of the models that Google provides without any fine-tuning? I just need the name of the pre-trained foundation/base model or architecture that this is based on and I should be able to download it myself from Google.
I could send the saved model to you.
Yeah, that could work if necessary, but I would prefer something openly available from Google so that I can create another notebook around it.
I will see if I can get the model name
On Thu, Aug 17, 2023 at 2:08 PM Zaki Mughal [sivoais] < @.***> wrote:
it is a vertex ai doing a auto ml is that what you mean?
What I mean: is there a model that this is a fine-tuning of or is this directly one of the models that Google provides without any fine-tuning? I just need the name of the pre-trained foundation/base model or architecture that this is based on and I should be able to download it myself from Google.
I could send the saved model to you.
Yeah, that could work if necessary, but I would prefer something openly available from Google so that I can create another notebook around it.
— Reply to this email directly, view it on GitHub https://github.com/EntropyOrg/perl-AI-TensorFlow-Libtensorflow/issues/22#issuecomment-1682818234, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABUZI7CXR7NE7VCABCAZNW3XVZT3JANCNFSM6AAAAAA3UCSDXA . You are receiving this because you authored the thread.Message ID: @.*** com>
Disclaimer
The information contained in this communication from the sender is confidential. It is intended solely for use by the recipient and others authorized to receive it. If you are not the recipient, you are hereby notified that any disclosure, copying, distribution or taking action in relation of the contents of this information is strictly prohibited and may be unlawful.
This email has been scanned for viruses and malware, and may have been automatically archived. Cassens
from Data Scientist "This is not a Google-model but one we created for you. This was not a model provided by Google." so I don't wouldn't be an open available model
I have successfully written a command line script based on your notebook and matched the results. Now I am trying to use a save container model created on GCP. I see several difference from your saved model. If I do this on your model I get the following results
If I do on the GCP container saved model I get
I don't get a preferred size and I don't see a tag StatefulPartitionedCall which I think is making these calls die
Any ideas?