May 2020
Beginner to intermediate
430 pages
10h 39m
English
After all of the preceding steps are complete, we are ready for the most important step—training our custom neural network.
Training the model is performed using the following five steps, also outlined in the code:
!python /content/models/research/object_detection/model_main.py \ --pipeline_config_path={pipeline_fname} \ --model_dir={model_dir} \ --alsologtostderr \ --num_train_steps={num_steps} \ --num_eval_steps={num_eval_steps}
The explanation for this code is as follows: