-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ValueError: Tried to convert 'x' to a tensor and failed. Error: Cannot create a tensor proto whose content is larger than 2GB. #4
Comments
What are the specs of the machine you use? Particularly the GPU. |
Linux xiaoi2018-754 3.10.0-957.1.3.el7.x86_64 #1 SMP Thu Nov 29 14:49:43 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 410.78 Driver Version: 410.78 CUDA Version: 10.0 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 108... Off | 00000000:02:00.0 Off | N/A |
| 43% 75C P2 85W / 250W | 2847MiB / 11178MiB | 32% Default |
+-------------------------------+----------------------+----------------------+
| 1 GeForce GTX 108... Off | 00000000:03:00.0 Off | N/A |
| 27% 36C P8 9W / 250W | 10MiB / 11178MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
| 2 GeForce GTX 108... Off | 00000000:82:00.0 Off | N/A |
| 31% 64C P2 62W / 250W | 477MiB / 11178MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
| 3 GeForce GTX 108... Off | 00000000:83:00.0 Off | N/A |
| 29% 33C P8 8W / 250W | 10MiB / 11178MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
tf.version
'1.12.0'
print(keras.version)
2.2.4
by the way ,I also want to ask what your annotation_train.txt file looks like.Can you give me a example,I use my own dataset,
22240671_1034114836.jpg 35 50 27 45 637 1543 210 10 431 426
46465187_719612387.jpg 207 20 206 554 58 314 36 99 335 255
24991671_3672543637.jpg 114 949 50 14 527 415 330 2 981 833
32864234_3953211135.jpg 2 1495 607 3216 736 931 1495 493 435 28
69056359_2721077874.jpg 114 556 8 82 728 28 41 109 31 162
62780546_3631858873.jpg 12 295 25 227 165 13 207 20 368 1556
21057171_2803761122.jpg 22 19 60 253 380 1039 30 174 249 198
28059718_3439131428.jpg 455 18 12 195 80 1421 13 1 119 20
36108140_2080626420.jpg 6 76 94 675 76 19 6 6 19 46
this is my txt,each number corresponds to a Chinese character.Is there any problem with this format?
look forward to your kind reply/advice
…------------------ 原始邮件 ------------------
发件人: "Jan Zdenek"<notifications@github.com>;
发送时间: 2019年8月29日(星期四) 中午1:07
收件人: "kurapan/CRNN"<CRNN@noreply.github.com>;
抄送: "kk"<1204919819@qq.com>;"Author"<author@noreply.github.com>;
主题: Re: [kurapan/CRNN] ValueError: Tried to convert 'x' to a tensor andfailed. Error: Cannot create a tensor proto whose content is larger than 2GB.(#4)
What are the specs of the machine you use? Particularly the GPU.
And tell me your TF and Keras version too, please.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I haven't tested it with TF 1.12 and Keras version higher than 2.2, but I think it should work with those versions too. It uses Synth90k annotation. There is a file, let's call it
Then, you have a file
If you'd rather use your format, which I like better than the Synth90k format actually, you'd have rewrite the data loading part of the code. |
I have rewrite the data_generator I try the Synth90k,in this case,y_pred[:, 2:, :].shape is (5000, 48, 37) |
Traceback (most recent call last):
File "train.py", line 95, in
training_model.fit_generator(train_generator, steps_per_epoch=int(train_generator.nb_samples / train_generator.batch_size), epochs=cfg.nb_epochs, verbose=1, workers=cfg.nb_workers, use_multiprocessing=True, callbacks=callbacks)
File "/home/sherry/.local/lib/python3.6/site-packages/keras/legacy/interfaces.py", line 91, in wrapper
return func(*args, **kwargs)
File "/home/sherry/.local/lib/python3.6/site-packages/keras/engine/training.py", line 1418, in fit_generator
initial_epoch=initial_epoch)
File "/home/sherry/.local/lib/python3.6/site-packages/keras/engine/training_generator.py", line 223, in fit_generator
callbacks.on_batch_end(batch_index, batch_logs)
File "/home/sherry/.local/lib/python3.6/site-packages/keras/callbacks.py", line 115, in on_batch_end
callback.on_batch_end(batch, logs)
File "/home/sherry/CRNN-master/utils.py", line 130, in on_batch_end
accuracy, correct_char_predictions = self.evaluate()
File "/home/sherry/CRNN-master/utils.py", line 162, in evaluate
ctc_decode = K.ctc_decode(y_pred[:, 2:, :], input_length=np.ones(shape[0])*shape[1])[0][0]
File "/home/sherry/.local/lib/python3.6/site-packages/keras/backend/tensorflow_backend.py", line 4289, in ctc_decode
y_pred = tf.log(tf.transpose(y_pred, perm=[1, 0, 2]) + epsilon())
File "/usr/anaconda3/lib/python3.6/site-packages/tensorflow/python/ops/array_ops.py", line 1420, in transpose
ret = transpose_fn(a, perm, name=name)
File "/usr/anaconda3/lib/python3.6/site-packages/tensorflow/python/ops/gen_array_ops.py", line 8927, in transpose
"Transpose", x=x, perm=perm, name=name)
File "/usr/anaconda3/lib/python3.6/site-packages/tensorflow/python/framework/op_def_library.py", line 528, in _apply_op_helper
(input_name, err))
how to solve the problem?
The text was updated successfully, but these errors were encountered: