官方文档: https://shiro.apache.org/reference.html https://shiro.apache.org/java-authentication-guide.html Terminology you’ll need Subject - Security specific user ‘view’ of an application user. It can be a human being, a third-party process, a server con…
官方地址:https://docs.python.org/2.7/tutorial/index.html 本笔记只记录本人不熟悉的知识点 The Python Tutorial Index 1 Whetting Your Appetite 2 Using the Python Interpreter 3 An Informal Introduction to Python 4 More Control Flow Tools. 5 Data Structures 6 Modules 7 Input…
官方中文文档的网址先贴出来:https://tensorflow.google.cn/programmers_guide/saved_model tf.train.Saver 类别提供了保存和恢复模型的方法.tf.train.Saver 构造函数针对图中所有变量或指定列表的变量将 save 和 restore op 添加到图中.Saver 对象提供了运行这些 op 的方法,指定了写入或读取检查点文件的路径. TensorFlow 将变量保存在二进制检查点文件中,简略而言,这类文件将变量名称映射到…