Skip to main content
3 votes
1 answer
74 views

I have a three tfrecords (train,test valid) from the a deepmind github repo (https://github.com/google-deepmind/deepmind-research/tree/master/meshgraphnets) that I am trying to decode (at the minute ...
Andrew Russell's user avatar
1 vote
1 answer
86 views

I've recently ran into an error when trying to evaluate my training model onto my testing files. The error is thrown at the batch_raw = raw_iter.get_next(): try: while N_b<max_batches: ...
Pleba's user avatar
  • 15
0 votes
1 answer
57 views

I have looked at other posts e.g. Tensorflow TFRecord: Can't parse serialized example to try and resolve the issue of parsing serialized data failures but cannot see where I'm misunderstanding the ...
Keith's user avatar
  • 91
0 votes
0 answers
38 views

I have an application with 200GB data and I can't load it in RAM. Based on the data/problem, it will be extremely beneficial to have TFRecord files "sorted" in a certain way that makes them ...
ThanksForTheHelp's user avatar
0 votes
0 answers
58 views

I am currently using a Python script to convert XML files containing object annotations into TFRecord files, which are necessary for training object detection models like Faster R-CNN in TensorFlow. ...
Siddhi Powar's user avatar
1 vote
0 answers
48 views

I have a dataset of tfrecords and mapped them to a Tensorflow dataset. The dataset structure has a dict structure as follows: { "image" : ImageDataTensor, "additional_features" : ...
tobstar's user avatar
  • 23
0 votes
0 answers
73 views

I have around 1800 short videos. Each video is around 30 seconds. I trained a VAE to encode each frame into a latent vector (of size 200). Using this VAE, then I created a TFrecord with an entry for ...
Dr Sokoban's user avatar
  • 1,638
0 votes
1 answer
108 views

Problem I have a *.tfrecords file that I want to feed in a ConvLSTM2D model, created using Tensorflow. Here is the model structure. model = Sequential([ ConvLSTM2D(64, (3, 3), activation='relu', ...
tinykishore's user avatar
0 votes
0 answers
153 views

I converted the xml files I created in the label img file to csv and I want to convert them to a tf record file from there. I tried many ways and looked at many forums and videos, but I still cannot ...
user avatar
0 votes
1 answer
105 views

If I have a TFRecord file, how do I find if the underlying proto is Example vs SequenceExample?
Vikram Singh's user avatar
2 votes
0 answers
30 views

Does a TFRecord file have any magic bytes that can be used to identify it?
Vikram Singh's user avatar
2 votes
1 answer
202 views

I'm working on an object detection project, and use tf.data.Dataset input pipeline to load local data. Because object detection requires not only image but also annotations, and the different ...
Yiming Designer's user avatar
0 votes
1 answer
110 views

I am currently writing a tensorflow model to predict the next value of a label depending on a temporal sequence of items. I created a series of tfrecords files, each corresponding to a single trial ...
PMDP3's user avatar
  • 57
0 votes
1 answer
288 views

I am trying to read a tfrecord but keep getting this error InvalidArgumentError: Key: sign. Can't parse serialized Example. Here's what I did: def decode_tfrec(record_bytes): features = tf.io....
Lê Kiệt's user avatar
1 vote
1 answer
656 views

I'm currently working on implementing a pytorch version of this tensorflow project. They published a paper which can be found here. Dataset formats and where to find them The datasets available are ....
riccardo roberto basilone's user avatar

15 30 50 per page
1
2 3 4 5
29