Tamaño del cultivo Error en el modelo caffe

Estoy tratando de entrenar a un modelo caffe. Me sale este error

I0806 09:41:02.010442  2992 sgd_solver.cpp:105] Iteration 360, lr = 9.76e-  05
F0806 09:41:20.544955  2998 
data_transformer.cpp:168] Check failed: height<=datum_height (224 vs. 199)
***  Check failure stack trace: ***
    @     0x7f82b051edaa  (unknown)
    @     0x7f82b051ece4  (unknown)
    @     0x7f82b051e6e6  (unknown)
    @     0x7f82b0521687  (unknown)
    @     0x7f82b0b8e9e0  caffe::DataTransformer<>::Transform()
    @     0x7f82b0c09a2f  caffe::DataLayer<>::load_batch()
    @     0x7f82b0c9aa5
caffe::BasePrefetchingDataLayer<>::InternalThreadEntry()
    @     0x7f82b0b6ea30  caffe::InternalThread::entry()
    @     0x7f82b0b6f376  boost::detail::thread_data<>::run()
    @     0x7f82a6afea4a  (unknown)
    @     0x7f82a1147184  start_thread
    @     0x7f82aee51ffd  (unknown)
    @              (nil)  (unknown)
Aborted (core dumped)

Estaba recibiendo un error similar peroCheck failed: height<=datum_height (227 vs. 224) Luego cambié 227 a 224, pero ahora recibo esto. ¿Alguna sugerencia?

EDITAR: Mi código para LMDB-

EXAMPLE=/home/hyperworks/colorfile/   # Path where the output LMDB is stored
DATA=/home/hyperworks/colorfile/      # Path where the data.txt file is present 
TOOLS=/home/hyperworks/caffe/build/tools/   # Caffe dependency to access the convert_imageset utility 
DATA_ROOT=/home/hyperworks/colorfile/train/ # Path prefix for each entry in data.txt
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

# ----------------------------

RESIZE=true
if $RESIZE; then
  RESIZE_HEIGHT=227
  RESIZE_WIDTH=227
else
  RESIZE_HEIGHT=0
  RESIZE_WIDTH=0
fi

# Checks for DATA_ROOT Path
if [ ! -d "$DATA_ROOT" ]; then
  echo "Error: DATA_ROOT is not a path to a directory: $DATA_ROOT"
  echo "Set the DATA_ROOT variable to the path where the data 
   instances are stored."
  exit 1
fi

# ------------------------------
# Creating LMDB
 echo "Creating data lmdb..."
 GLOG_logtostderr=1 $TOOLS/convert_imageset \
    $DATA_ROOT \
    $DATA/train.txt \
    $EXAMPLE/train_lmdb

# ------------------------------
echo "Done."

Este es el código que usé para crear los archivos LMDB. Este es el código que usé para crear los archivos LMDB.

Respuestas a la pregunta(1)

Su respuesta a la pregunta