Rookie question


Hi, im new in ml technology, i wanna know how can i use these files with tensorjs… im developing a “q & a” software, and i download this multi laguage Bert model… which process should i apply them so i can use them in tensorflow js. Thank you for ur time.

Hi @Nicooow, The .meta file stores the graph structure of a model, .data stores the value of each variable in the graph, .index identifies the checkpiont. These files are used to load and assign the saved weights to the model. Thank You.