上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: Pooling 选择的策略 这里交叉介绍 pooling 选择的策略: •池化的应用:降维和保留显著的特征 •Max pooling 是取整个 feature map 区域的最大值作为特征,即一个 max feature操作,在自然语言处理中常用于文本分类(text classification), 阅读全文
posted @ 2021-11-05 11:29 cup_leo 阅读(142) 评论(0) 推荐(0)
摘要: 作者:Scofield 链接:https://www.zhihu.com/question/35866596/answer/236886066 来源:知乎 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 以下文章来源于CS的陋室 ,作者机智的叉烧 https://mp.weix 阅读全文
posted @ 2021-10-20 09:13 cup_leo 阅读(39) 评论(0) 推荐(0)
摘要: from pyDes import des, CBC, PAD_PKCS5 import binascii # 秘钥 KEY = 'dsj2020q' def des_encrypt(s): """ DES 加密 :param s: 原始字符串 :return: 加密后字符串,16进制 """ se 阅读全文
posted @ 2021-10-15 17:16 cup_leo 阅读(543) 评论(0) 推荐(0)
摘要: import pymysql import re import time import math from datetime import datetime import traceback import json import threading import logging import que 阅读全文
posted @ 2021-10-15 17:13 cup_leo 阅读(178) 评论(0) 推荐(0)
摘要: 方法一from pyhive import hive import traceback class Hive_tool: def __init__(self): self.conn = hive.Connection(host="******", port=1****, database='ods' 阅读全文
posted @ 2021-10-15 17:08 cup_leo 阅读(300) 评论(0) 推荐(0)
摘要: from apscheduler.schedulers.blocking import BlockingScheduler from datetime import datetime,timedelta,date import requests import os def check_related 阅读全文
posted @ 2021-10-15 17:02 cup_leo 阅读(143) 评论(0) 推荐(0)
摘要: # coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header # 发信方的信息:发信邮箱,QQ邮箱授权码 class QQemail: def __init__( 阅读全文
posted @ 2021-10-15 16:58 cup_leo 阅读(66) 评论(0) 推荐(0)
摘要: # Definition for singly-linked list. class Node(object): def __init__(self, val=0, next=None): self.val = val self.next = next class Solution: def add 阅读全文
posted @ 2021-09-25 19:18 cup_leo 阅读(35) 评论(0) 推荐(0)
摘要: select regexp_replace('50.8九 ,c...o【.。。。】。。。$##mmmmQWER@@*&^ 112 历史088天空','([^\\u4E00-\\u9FA5a-zA-Z0-9.]+)','') as name 阅读全文
posted @ 2021-07-05 16:43 cup_leo 阅读(1470) 评论(0) 推荐(0)
摘要: select phone,CONCAT_WS(',',collect_set(column name)) from table where ***group by phone 阅读全文
posted @ 2021-06-07 10:56 cup_leo 阅读(810) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页