摘要: 1. 感知机 若干二进制输入X1,X2,X3...,权重W1,W2,W3... 若∑jWjXj <= 阈值 输出 = 0 若∑jWjXj > 阈值 输出 = 1 可以把偏置看作对让感知机输出 1(类似于生物学上的“激活感受器”)难易程度的估算 logistic 函数 sigmoid 神经元 e约等于 阅读全文
posted @ 2024-06-12 16:24 Write666 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1. 打开IntelliJ的settings页面 2. 在Plugins里安装JRebel 3. 下载最新的反向代理工具 https://github.com/ilanyu/ReverseProxy/releases/latest 我是Windows 64,所以下载的是ReverseProxy_wi 阅读全文
posted @ 2019-11-20 13:18 Write666 阅读(883) 评论(0) 推荐(1) 编辑
摘要: Problems with Remote Desktop connections are common. While attempting to connect to the Remote Desktop network, many users have reported the error – Y 阅读全文
posted @ 2019-05-13 18:02 Write666 阅读(691) 评论(0) 推荐(0) 编辑
摘要: The error message ‘Your credentials did not work’ appears when you fail to connect to the remote system using Remote Desktop connection. This error is 阅读全文
posted @ 2019-05-13 17:59 Write666 阅读(830) 评论(0) 推荐(0) 编辑
摘要: mvn 引用GraphQL 1. 创建数据类 2. 创建测试类 阅读全文
posted @ 2018-11-26 17:25 Write666 阅读(2837) 评论(0) 推荐(0) 编辑
摘要: Flex 用于使页面上的内容自适应屏幕 首先,在网页代码的头部,加入一行viewport元标签。 <meta name=”viewport” content=”width=device-width, initial-scale=1″ /> viewport是网页默认的宽度和高度,上面这行代码的意思是 阅读全文
posted @ 2018-11-23 16:46 Write666 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 目录solr-7.5.0\server\solr 1. 新建文件夹 test-core 2. 在文件夹test-core下新建core.properties 3. 在test-core下新建文件夹conf 4. 在conf下新建文件schema.xml和solrconfig.xml(这两个文件里面的 阅读全文
posted @ 2018-11-19 17:36 Write666 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 今天使用httpClient.executeMethod时抛出异常:java.security.cert.CertPathValidatorException: Algorithm constraints check failed on signature algorithm: MD5withRSA 阅读全文
posted @ 2018-11-05 17:59 Write666 阅读(1799) 评论(0) 推荐(0) 编辑
摘要: @Cacheable @Cacheable 的作用 主要针对方法配置,能够根据方法的请求参数对其结果进行缓存 @Cacheable 作用和配置方法 实例 @Cacheable(value=”accountCache”),这个注释的意思是,当调用这个方法的时候,会从一个名叫 accountCache 阅读全文
posted @ 2018-10-15 10:58 Write666 阅读(34369) 评论(0) 推荐(0) 编辑