You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace model_parse;
-
- table ModelHeader {
- name:string;
- info_decryption_method:string;
- info_parse_method:string;
- model_decryption_method:string;
- info_cache_parse_method:string;
- is_fast_run_cache:bool;
- }
-
- table ModelInfo {
- data:[ubyte];
- algo_policy:[ubyte];
- binary_cache:[ubyte];
- }
-
- table ModelData {
- data:[ubyte];
- }
-
- table Model {
- header:ModelHeader;
- info:ModelInfo;
- data:ModelData;
- }
-
- table PackModel {
- models:[Model];
- }
-
- root_type PackModel;
|