######################### TensorBay Resource Name ######################### TensorBay Resource Name(TBRN) uniquely identifies the resource stored in TensorBay. All TBRN begins with ``tb:``. | 1. Identify a dataset .. code:: html tb: For example, the following TBRN means the dataset "VOC2012". .. code:: html tb:VOC2012 | 2. Identify a segment .. code:: html tb:: For example, the following TBRN means the "train" segment of dataset "VOC2012". .. code:: html tb:VOC2010:train | 3. Identify a file .. code:: html tb:::// For example, the following TBRN means the file "2012_004330.jpg" under "train" segment in dataset "VOC2012". .. code:: html tb:VOC2012:train://2012_004330.jpg ************************ TBRN With Version Info ************************ The version information can also be included in the TBRN when using :doc:`version control ` feature. | 1. Include revision info: A TBRN can include revision info in the following format: .. code:: html tb:@[:][://] For example, the following TBRN means the main branch of dataset "VOC2012". .. code:: html tb:VOC2010@main | 2. Include draft info: A TBRN can include draft info in the following format: .. code:: html tb:#[:][://] For example, the following TBRN means the 1st draft of dataset "VOC2012". .. code:: html tb:VOC2012#1 Note that if neither revision nor draft number is given, a TBRN will refer to the default branch.