- 博客(32)
- 问答 (2)
- 收藏
- 关注
原创 Auto中配体报错:AttributeError:Bond instance has no attribute ‘leaf‘
AutoDock准备受体遇到的问题
2022-06-19 22:02:32 1820 1
原创 pytorch与cuda、cudnn版本对应问题
pytorch和torch这两个框架有些地方不一样cuda与pytorch版本对应网站:https://pytorch.org/get-started/previous-versions/cudatoolkit就是cuda查看cudnn版本:cat /usr/local/cuda/include/cudnn_version.h | grep CUDNN_MAJOR -A 2(一般下载pytorch的时候就会自动下载)...
2022-04-18 21:43:35 877
原创 论文详解-MolGPT: Molecular Generation Using a Transformer-Decoder Model
本篇文章来自2021年10月发表在Journal of Chemical Information And Modeling上的MolGPT: Molecular Generation Using a Transformer-Decoder Model。文章提出了一个来预测分子生成的SMILES标记序列。该模型利用了掩蔽的自我注意机制,使学习字符串标记之间的长期依赖关系变得更简单。这对于学习满足配价和环闭包的有效字符串的语义特别有用。此外,该模型学习更高层次的化学表示通过分子性质控制。MolGPT能够生成属.
2022-03-01 17:33:16 2554 2
原创 MoFlow:生成分子图的可逆流模型
ACM SIGKDD | MoFlow: An Invertible Flow Model for GeneratingMolecular Graphs今天给大家介绍ACM SIGKDD的一篇文章,“MoFlow: An Invertible Flow Model for Generating Molecular Graphs”。文章提出一种新的基于流的深度图生成模型MoFlow,用于分子图的生成,是第一个不仅可以一次通过可逆映射有效地生成分子图,而且还具有化学有效性保证的流模型。1、研究背景深图
2022-03-01 15:43:23 1133
原创 pycharm中import pandas 无效
C:\Users\Administrator.condarc文件中channels中的https改为http 如下:channels:http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/rhttp://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
2021-10-10 14:38:04 1215
转载 vscode-remote 无法写入文件“vscode-remote://ssh-remote
项目场景:未能保存“b.cpp”: 无法写入文件"vscode-remote://ssh-remote使用vscode-remote 无法保存修改文件的内容项目场景:Ctrl+s 保存code失败:问题描述:查看文件的属性 ls-ll原因分析:最后面的 -rw-rw-r–里的-r–应该改为-rwx-解决方案:chmod 757: xxx “xxx”为文件名,这样就可以远程修改了。并可以执行:版权声明:本文为CSDN博主「young鹏儿森~」的原创文章,遵循CC 4.0 BY-SA版权
2021-10-10 14:25:12 8553
转载 JS获取当前时间并把时间赋值给input表单
<script>window.onload = function(){function getDate(){debugger;`在这里插入代码片`var today = new Date();var date;date = (today.getFullYear()) +"-" + (today.getMonth() + 1 ) + "-" + today.getDate() + "-" + today.toLocaleTimeString();return date;}wind
2021-08-12 09:59:51 2056
原创 SpringBoot学习笔记
dao层:数据访问层,封装方法(面向对象的方法),在mapper中写sql封装成方法,将方法写在dao层;service层:业务逻辑层,调用dao层,写功能实现的代码;controller层:控制层,调用service层,与前端交互;mapper层:里面写sql语句,增删改查;数据库:越简单越好,不用写外键,删除一个表的数据,另一个表的数据在逻辑层可以写出来,进行判空。...
2021-08-09 17:39:51 72
原创 Shiro
## Spring Security 和 Shiro相同点:1.认证功能2.授权功能3.加密功能4.会话管理5.缓存支持6.rememberMe功能不同点:优点:1.Spring Security基于Spring开发,项目中如果使用Spring作为基础,配合Spring Security做权限更加方便,而shiro和Spring进行整合开发2.Spring Security 功能比Shiro 更加丰富些,例如安全防护3.Spring Security社区资源比shiro丰富缺点:
2021-08-07 16:53:41 90
原创 Java面试题
static方法public class Person (){private string name;private int age;public Person(){};get()方法;set()方法;}public class eatPerson(){public Person person;public static void eatPerson{person.setid();–错误,静态类eatPerson首先加载到内存中,不能引用非静态类的对象}}...
2021-07-09 17:50:15 92
原创 Thirft学习
thriftThrift架构:thrift允许你定义一个简单的定义文件中的数据类型和服务接口。以作为输入文件,编译器生成代码用来方便地生成RPC客户端和服务器通信的无缝跨编程语言1.Thrift是一个跨语言的服务部署架构,它通过IDL(接口定义语言)来定义RPC(远程过程调用)的接口和数据类型,然后通过thrift编译器生成不同语言的代码,并由生成的代码负责RPC协议层和传输层的实现。2.Thrift的RPC调用过程:1)3.Thrift的TProtocol协议层,定义数据传输格式4.TTra
2021-03-31 14:32:22 171
转载 2021-03-30
hive 启动报错java.net.URISyntaxException: Relative path in absolute URI:编辑配置hive文件hive-site.xml#如下命令将"KaTeX parse error: Expected 'EOF', got '#' at position 53: …/tmp"sed -i 's#̲{system:Java.io.tmpdir}#/hive/tmp#g’ hive-site.xml或者将包含上述字段在值对中的全部改为上述的目录路径/hi
2021-03-30 17:09:53 67
原创 2021-03-29
Thrift安装与配置及Java编写Thrift实现客户端与服务端通信安装与配置1、首先下载thrift-0.9.3.exe到指定目录,如D:\software\thrift2、向Path中添加变量值,值为thrift.exe的地址,如D:\software\thrift\3、修改thrift-0.9.3.exe名字为thrift.exe4、命令行输入thrift -version,如果输出thrift的版本即表明安装成功。Java编写thrift1、首先在D:\software\t
2021-03-29 14:25:38 171
原创 Linux学习环境搭建
Linux学习笔记1.安装操作系统1.1CentOS推荐这个版本https://mirrors.tuna.tsinghua.edu.cn/centos/7.9.2009/isos/x86_64/CentOS-7-x86_64-Minimal-2009.iso1.2. Fedora 或者这个推荐版本https://mirrors.tuna.tsinghua.edu.cn/fedora/releases/33/Server/x86_64/iso/Fedora-Server-dvd-x86_6
2021-01-19 12:31:52 221
原创 Linux 学习环境搭建
Linux 学习环境搭建--------------------------------------------------------下面3条,分别代表搭建环境过程中用到的工具。这里为每类工具提供的多种选择,请任选其中一种使用。1. 操作系统--------------------------------------------------------这里提供是RedHat(RedHat、CentOS、Fedora)系列。Debian(例如Debian、Ubuntu)系列,请自行搜索。1
2021-01-19 12:25:31 158
原创 IntelliJ Idea 初始项目提交到华为云
@IntelliJ Idea 初始项目提交到华为云TOC1、2、3:是首次提交之前的准备过程4、5 :任何时候都可以执行的操作VCS --> Create Git Repository…成功后,VCS变成git,同时在项目上右键,也有git。下面的某些操作,会提示输入git远程仓库的url、username、password,请根据提示操作即可。如果输入错误,请在Windows中查找“凭据”,选择“Windows凭据”,删除当前git相关凭据即可。git --> Fet
2021-01-14 11:29:14 432
原创 锐聘学院oracle上机题
–2.2–1create user qst1 default tablespace user_data temporary tablespace user_temp identified by 123456;alter user qst1 identified by 123;alter user qst1 account lock;alter user qst1 account unlo...
2020-01-02 14:00:43 1058
原创 oracle学习笔记
–创建用户create user zhangsan identified by mima;–修改密码alter user zhangsan identified by mima1;–删除用户drop user zhangsan;drop user zhangsan cascade;–授予用户权限grant create session to zhangsan;–授予张三登录权限g...
2019-12-30 21:49:04 265 2
原创 数据库操作整理
//sqlserver windows登录//高级导出的连接代码Data Source=(LocalDB)\v11.0;AttachDbFilename=e:\WebSites\WebSite135\App_Data\abc.mdf;Integrated Security=TrueData Source=PC-20160801OGQX;Initial Catalog=abc;In...
2019-11-07 20:16:50 268
原创 WebSite9
DataListBingding.aspx.csusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Configuration;using S...
2019-11-04 21:41:57 244
原创 使用DataAdapter对象执行数据库命令:增删查改
DataAdapter_select.aspx.cs:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data;using System....
2019-10-24 11:32:14 978
原创 使用command对象从数据库中对数据:增删改查
web.config:<connectionStrings> <!-- <add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS; AttachDbFilename=|DataDirectory|\mydatabase.mdf;Intefrated Secu...
2019-10-24 11:16:22 1816
原创 .Net知识
.net连接数据库web.config里面的代码: <!-- <add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS; AttachDbFilename=|DataDirectory|\mydatabase.mdf;Intefrated Security=True;User In...
2019-10-15 11:41:52 180
空空如也
hive报错:hive中建表之后,插入一条数据
2021-04-27
TA创建的收藏夹 TA关注的收藏夹
TA关注的人