《Operating System Concepts》阅读笔记:p626-p628
A software development method in which the developer submits code to other developers for review and approval.
2025-04-12
Simplest Linear Regression on Keras Framework
I wrote this script for fun and for the preparation of oncoming Mathematical modeling contest(also simply in order to complete the task of a daily blog✌( •̀ ω •́ )y), didn't took a lot of time(It means I can have time to sleep...).
2017-08-25
问:如何用python来对远程的ip连通情况进行验证?
近期有一个小需求,通过python验证远程3台服务器的ip地址是否可连通。服务器网络情况可以分为3种1、正常连通情况,能返回相应的延迟好和丢包率,这是最正常的情况了;2、网络断断续续,有timeout,也有ping通的情况,延迟高,不稳定;3、完全无法连通,就是timeout了。之前用了第三方模块[链接]看他例子最后面的一段代码
2022-03-07✓ 已解决
问:ValueError: setting an array element with a sequence.????
在只使用Tensorflow内置库的情况下,完成线性回归,结果出现ValueError: setting an array element with a sequence错误。之前找的相关回答,都是有其它库介入的情况的错误,比如numpy。而我现在遇到的错误Queue一直不能修正。这个技术难度应该不大,但是我一直没能找到合适解决办法,希望大家可以帮忙看一下!
2017-10-25✓ 已解决
COMP 4107神经网络
COMP 4107: Neural Networks Winter 2021Page 1 of 2Assignment 4This assignment may be completed individually or in groups of 2 or 3.You are recommended to use your project groups. If you are in a group, one student willsubmit all necessary files and the other student(s) will submit a text file spec...
2022-03-05
transforms机制与数据标准化
文章和代码已经归档至【Github仓库:[链接] 】或者公众号【AIShareLab】回复 pytorch教程 也可获取。图像预处理 transformstransforms运行机制torchvision:计算机视觉工具包torchvision.transforms常用的图像预处理方法,例如:数据中心化数据标准化缩放裁剪旋转翻转填充噪声添加灰度变换线性变换仿射变换亮度、饱和度...
2023-07-08
《Operating System Concepts》阅读笔记:p587-p596
《Operating System Concepts》学习第 52 天,p587-p596 总结,总计 10 页。一、技术总结1.Recovery(1)consistency checkingconsistency checking 工具:fsck。(2)log-structure file system(3)WAFL file system2.Veritas(1)Veritas file systemBoth NTFS and the Veritas file system use this method, and it is inclu...
2025-04-08
COMP4436 AIoT
[2024-25] COMP4436 AIoTThe Hong Kong Polytechnic University (PolyU) Assignment I Submission Deadline – 21 February 2025 Comparative Analysis of ML, DL and SNN Algorithms in AIoT ApplicationsObjective: The goal of this assignment is to implement and compare the performance of various machine learn...
2025-02-20
2017-09-24 前端日报
2017-09-24 前端日报 精选 未来布局之星Grid更快地构建DOM: 使用预解析, async, defer 以及 preload_JavaScript深入Vue2.x的虚拟DOM diff原理原来 CSS 与 JS 是这样阻塞 DOM 解析和渲染的怎样把网站升级到http/2Always Right – An Extension Migration StoryHow to write reliable browser tests using Selenium and Nod...
2017-07-18 前端日报
2017-07-18 前端日报 精选 javascript常用实例的实现与封装实现一个 SwiperRekit 2.0 构建基于React+Redux+React-router的可扩展Web应用javascript/react 规范翻译从 JavaScript 到 TypeScriptA Beginner’s Guide to Progressive Web Apps & the Frontend WebUpdating Your React Native App 中文 J2Cache开源中国两...
2017-07-18
tensorflow API翻译
英文API看了真是不爽,翻译几个常用的API,不一定准确 Shape Shape可以说是张量、或者说是向量 可以以下图来表示的更加直观一点 placeholder 占位符,用来定义变量tf.placeholder(dtype, shape=None, name=None)shape是变量的维数,name是用来定义保存的变量名x = tf.placeholder(tf.float32, shape=(1024, 1024))定义了...
[LeetCode]Find Median from Data Stream
Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value. Examples: [2,3,4] , the median is 3 [2,3], the median is (2 + 3) / 2 = 2.5 Design a data structure that supports the following two o...
2015-12-24
机器学习的敲门砖:kNN算法(下)
作者 | Japson来源 | 木东居士 0x00 前言 在上一篇文章《机器学习的敲门砖:kNN算法(中)》中,我们借助kNN分类算法,学习了如下知识点: 将数据集划分为训练数据集和测试数据集,以此验证模型好坏。 在我们得到了分类结果之后,计算出accuracy分类精准度。 了解了超参数对模型的影响,并使用网格搜索算法搜索出最佳超...
2019-09-28
Al.BASE-win10环境下TensorFlow的python代码练习
计算图(有向图|数据流图)描述了张量数据(Tensor)的计算流程,负责维护和更新状态,一旦输入端的所有张量准备好,节点将被异步并行执行运算。
推荐系统-新闻推荐之推荐
文章的自身特征: category_id表示这文章的类型, created_at_ts表示文章建立的时间, 这个关系着文章的时效性, words_count是文章的字数, 一般字数太长我们不太喜欢点击, 也不排除有人就喜欢读长文。
2020-12-03
模型微调,低预算,高期望!
作为迁移学习中的常用技术,Fine-tuning(微调)已经成为了深度学习革命的重要部分。微调不需要针对新任务从头开始学习,只需要加载预训练模型的参数,然后利用新任务的数据进行一步训练模型即可。也可以说微调是对开放域任务的预训练模型进行训练,从而适应特定域任务。与从零开始训练网络相比,微调是一种低成本,高收...
2023-01-10
答:node做为中间层的项目结构分析求指导(个人比较模糊不清)
1、nginx(接入层) ->负载均衡-> node(中间层)->REST/RPC->java(业务层);2、node作为中间层,本质上也还是一个独立的mvc网站,负责接受请求和渲染网页,只是其中一部分业务逻辑不再由node自己完成,而是可以通过REST或RPC的方式调用后台JAVA的应用服务器。3、所以你这里说的项目模块,我理解你是指node_m...