You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I've found a performance issue in your project: batch() should be called before map(), which could make your program more efficient. Here is the tensorflow document to support it.
Detailed description is listed below:
/ch10/cifar10_train.py: .batch(128)(here) should be called before .map(preprocess)(here).
/ch10/cifar10_train.py: .batch(64)(here) should be called before .map(preprocess)(here).
/ch10/resnet18_train.py: .batch(512)(here) should be called before .map(preprocess)(here).
/ch10/resnet18_train.py: .batch(512)(here) should be called before .map(preprocess)(here).
/ch15/train_scratch.py: .batch(batchsz)(here) should be called before .map(preprocess)(here).
/ch15/train_scratch.py: .batch(batchsz)(here) should be called before .map(preprocess)(here).
/ch15/train_scratch.py: .batch(batchsz)(here) should be called before .map(preprocess)(here).
/ch15/pokemon.py: .batch(32)(here) should be called before .map(preprocess)(here).
/ch15/train_transfer.py: .batch(batchsz)(here) should be called before .map(preprocess)(here).
/ch15/train_transfer.py: .batch(batchsz)(here) should be called before .map(preprocess)(here).
/ch15/train_transfer.py: .batch(batchsz)(here) should be called before .map(preprocess)(here).
/ch08/nb.py: .batch(128)(here) should be called before .map(proprocess)(here).
/ch08/nb.py: .batch(128)(here) should be called before .map(proprocess)(here).
Besides, you need to check the function called in map()(e.g., proprocess called in .map(proprocess)) whether to be affected or not to make the changed code work properly. For example, if proprocess needs data with shape (x, y, z) as its input before fix, it would require data with shape (batch_size, x, y, z).
Looking forward to your reply. Btw, I am very glad to create a PR to fix it if you are too busy.
The text was updated successfully, but these errors were encountered:
Hello! I've found a performance issue in your project:
batch()
should be called beforemap()
, which could make your program more efficient. Here is the tensorflow document to support it.Detailed description is listed below:
.batch(128)
(here) should be called before.map(preprocess)
(here)..batch(64)
(here) should be called before.map(preprocess)
(here)..batch(512)
(here) should be called before.map(preprocess)
(here)..batch(512)
(here) should be called before.map(preprocess)
(here)..batch(batchsz)
(here) should be called before.map(preprocess)
(here)..batch(batchsz)
(here) should be called before.map(preprocess)
(here)..batch(batchsz)
(here) should be called before.map(preprocess)
(here)..batch(32)
(here) should be called before.map(preprocess)
(here)..batch(batchsz)
(here) should be called before.map(preprocess)
(here)..batch(batchsz)
(here) should be called before.map(preprocess)
(here)..batch(batchsz)
(here) should be called before.map(preprocess)
(here)..batch(128)
(here) should be called before.map(proprocess)
(here)..batch(128)
(here) should be called before.map(proprocess)
(here).Besides, you need to check the function called in
map()
(e.g.,proprocess
called in.map(proprocess)
) whether to be affected or not to make the changed code work properly. For example, ifproprocess
needs data with shape (x, y, z) as its input before fix, it would require data with shape (batch_size, x, y, z).Looking forward to your reply. Btw, I am very glad to create a PR to fix it if you are too busy.
The text was updated successfully, but these errors were encountered: