摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>详情页</title> <script src="js/jquery.min.js"></script> <script src="js/echarts.min.js"></scr 阅读全文
posted @ 2022-01-20 10:15 biglayman 阅读(71) 评论(0) 推荐(0) 编辑
摘要: `bert.py` # coding: UTF-8 import torch import torch.nn as nn # from pytorch_pretrained_bert import BertModel, BertTokenizer from pytorch_pretrained im 阅读全文
posted @ 2021-12-16 19:56 biglayman 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 1.查看NVIDIA版本信息 其实这里的cuda版本和安装的tensorflow无关!!! 2.查看对应显卡支持的cuda+cudnn 3.经过长期的试错,得出结论.1660 super安装cuda10确实安装不成功,在网上看别人的也的确是成功了,可能和我之前升级有关,最终安装cuda10.2 对应 阅读全文
posted @ 2021-10-06 20:10 biglayman 阅读(164) 评论(0) 推荐(0) 编辑
摘要: IDEA的LeetCode插件 1.下载安装 2.登录并配置LeetCode $!velocityTool.camelCaseName(${question.titleSlug}) ${question.content} package leetcode.editor.cn; public clas 阅读全文
posted @ 2021-05-26 10:37 biglayman 阅读(187) 评论(0) 推荐(0) 编辑
摘要: IDEA个性化配置 1.配置idea64.exe.vmoptions -Xms2048m -Xmx2048m -XX:ReservedCodeCacheSize=512m -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=50 -XX:CICompilerCount= 阅读全文
posted @ 2021-05-24 15:50 biglayman 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 下载并解压MySQL5.7 https://downloads.mysql.com/archives/community/ data文件夹是指定之后自己生成的文件,init.sql是自己写的脚本文件,my.ini是自己新建的MySQL配置文件,setup.bat是自己新建的批处理脚本文件,MySQL 阅读全文
posted @ 2021-05-17 15:51 biglayman 阅读(2154) 评论(0) 推荐(0) 编辑
摘要: package re; import java.util.Arrays; /** * @Author: layman * @Date:Create:in 2021/4/30 9:03 * @Description: 正则表达式的基本使用: * [a] a 都表示a * [ab] a或者b * [a- 阅读全文
posted @ 2021-04-30 10:25 biglayman 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1.安装虚拟机 1.1 设置主机NAT网络 1.2 修改IP地址 vim /etc/sysconfig/network-scripts/ifcfg-eth0 #系统启动的时候网络接口是否有效(yes/no) ONBOOT=yes # IP的配置方法[none|static|bootp|dhcp](引 阅读全文
posted @ 2021-04-06 15:25 biglayman 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1.hive conf/hive-log4j.properties # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTIC 阅读全文
posted @ 2021-03-22 20:46 biglayman 阅读(43) 评论(0) 推荐(0) 编辑
摘要: HadoopHA 1.zookeeper配置 zoo.cfg # The number of milliseconds of each tick tickTime=2000 # The number of ticks that the initial # synchronization phase 阅读全文
posted @ 2021-03-12 09:30 biglayman 阅读(48) 评论(0) 推荐(0) 编辑