码迷,mamicode.com
首页 >  
搜索关键字:note to self    ( 21530个结果
python API获取音乐链接,歌手信息........
import requests import re from threading import Thread from bs4 import BeautifulSoup import openpyxl import json class MUSIC(Thread): def run(self): s ...
分类:编程语言   时间:2021-06-06 19:17:40    阅读次数:0
类对象支持比较操作
一、int、string、list这些基本类型的大小比较都是基于如下方法实现:__lt__;__gt__;__le__;__ge__;__eq__;__nq__,同理,类要实现比较功能需要实现这些方法 二、使用装饰器functools.total_ordering可以简化上诉实现的方法 三、实例: ...
分类:其他好文   时间:2021-06-04 19:54:04    阅读次数:0
Python 多态,抽象类的实现
import abc #定义一个说话的方式接口类,只能被继承 不能被实例化 class Speak(abc.ABC): #@abc.abstractmethod @abc.abstractmethod def to_speak(self): pass #定义学生说话的类 class Student( ...
分类:编程语言   时间:2021-06-04 18:50:52    阅读次数:0
web前端技术分享Electron之IPC游戏 通信
1、index.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline ...
分类:Web程序   时间:2021-06-03 18:18:45    阅读次数:0
0603 每日文献阅读 打卡
Read Data:0603 Publication: CVPR 2021 Title: Instance Localization for Self-supervised Detection Pretraining Participants: Ceyuan Yangy, Zhirong Wu, B ...
分类:其他好文   时间:2021-06-03 18:09:43    阅读次数:0
Python3 print简介
def print(self, *args, sep=' ', end='\n', file=None): # known special case of print """ print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=Fa ...
分类:编程语言   时间:2021-06-03 17:49:48    阅读次数:0
VUE 组件内全局变量
<template> <div> </div> </template> <script> var self = this; export default { }; </script> // scoped 样式只在本组件使用 <style scoped> /** * 导入css样式组件 * @impo ...
分类:其他好文   时间:2021-06-02 20:55:34    阅读次数:0
程序打开一个文本文件,文件中添加内容文字
1、主体代码 #region [ 启动记事本 ] System.Diagnostics.Process Proc; try { // 启动记事本 Proc = new System.Diagnostics.Process(); Proc.StartInfo.FileName = "notepad.e ...
分类:其他好文   时间:2021-06-02 20:53:03    阅读次数:0
Linux_shellcode总结
Linux_shellcode总结 参考https://b0ldfrev.gitbook.io/note/pwn/linux_shellcode 在寄存器都是非理想值情况下(shellcode可根据环境具体触发时寄存器的值做长度调整),本着最优通用的原则,整理了Linux下32位和64位最短通用sh ...
分类:系统相关   时间:2021-06-02 20:48:28    阅读次数:0
Contrastive Learning(CL,对比学习)
最近深度学习两巨头 Bengio 和 LeCun 在 ICLR 2020 上点名 Self-Supervised Learning(SSL,自监督学习) 是 AI 的未来,而其的代表的 Framework 便是 Contrastive Learning(CL,对比学习)。 另一巨头 Hinton 和 ...
分类:其他好文   时间:2021-06-02 20:26:20    阅读次数:0
21530条   上一页 1 ... 3 4 5 6 7 ... 2153 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!