I am working on an active machine learning pipeline with the tensorflow object detection api. My goal is to dynamically change the path within the network's .config file.
The standard configuration looks like this:
train_input_reader: {
tf_record_input_reader {
input_path: "/PATH_TO_CONFIGURE/train.record"
}
label_map_path: "/PATH_TO_CONFIGURE/label_map.pbtxt"
}
"PATH_TO_CONFIGURE" should be dynamically replaced from within my jupyter notebook cell.