上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 344 下一页
摘要: #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Sun Sep... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(33) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Sun Sep... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(29) 评论(0) 推荐(0)
摘要: super() 的入门使用 在类的继承中,如果重定义某个方法,该方法会覆盖父类的同名方法,但有时,我们希望能同时实现父类的功能,这时... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(35) 评论(0) 推荐(0)
摘要: super() 的入门使用 在类的继承中,如果重定义某个方法,该方法会覆盖父类的同名方法,但有时,我们希望能同时实现父类的功能,这时... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(23) 评论(0) 推荐(0)
摘要: super的作用是降低多继承时的算法复杂度,和什么父类没有关系 class A: def __init__(self): p... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(28) 评论(0) 推荐(0)
摘要: super的作用是降低多继承时的算法复杂度,和什么父类没有关系 class A: def __init__(self): p... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(13) 评论(0) 推荐(0)
摘要: 在OOP程序设计中,当我们定义一个class的时候,可以从某个现有的class继承,新的class称为子类(Subclass),而被... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(31) 评论(0) 推荐(0)
摘要: 在OOP程序设计中,当我们定义一个class的时候,可以从某个现有的class继承,新的class称为子类(Subclass),而被... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(27) 评论(0) 推荐(0)
摘要: keras cnn 代码详解 #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Sun Sep 30 18:00:30 2018这是用keras搭建的简单的cnn 网络... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(14) 评论(0) 推荐(0)
摘要: tensorflow pooling import tensorflow as tftemp = [0., 0., 1., 0., 0., 0., 1.5, 2.5]# Reshape the tensor to be 3 dimens... 阅读全文
posted @ 2022-08-19 22:56 luoganttcc 阅读(17) 评论(0) 推荐(0)
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 344 下一页