森田一世

Results 18 comments of 森田一世

Any Update? How can I save and retrieve a model's weights?

Any Update? How can I save and retrieve a model's weights?

@weiznich There are two main reasons why I choose to add `sub_print_schema` 1. Simplicity of coding When making the type of print_schema one or more print_schema, there are lots of...

@Sytten Sorry, I don't understand what you are telling. Print schema will be used for aggregating all tables used. Sub print schema will be used for splitting table schema, and...

@Sytten I still don't understand your question. This PR is to print out multiple schema.rs files using `sub_print_schema`, and sqlite cannot make multiple schema names.

@Sytten Thanks for the suggestion. I created issue and changed addressed issue.

@weiznich Another benefit of sub_print_schema is that searching tables and foreign keys runs for generating print_schema and sub_print_schema are generated by reusing those searched tables foreign keys. Also, I think...

@weiznich Thanks for the suggestions. Now, I rethought implementations. Can you give an opinion on my following specifications to make this feature? The New `diesel.toml` format allows a hashmap of...

@weiznich Suppose following diesel.toml ```:toml [print_schema.user] file="user/src/schema.rs" [print_schema.company] file="company/src/schema.rs" filter={only_tables=["companies"]} ``` `diesel migration run --name user --only-tables users` will override user's filter and run command. diff_schema requires to set name...

@weiznich Thanks for the suggestion. I agree with your idea that `--print-schema-key` is more suitable. But, I didn't understand applying the corresponding CLI action when not specifying `--print-schema-key` flag, so...