Single-particleprocessinginrelion-2.1详细介绍relion-2.1的安装过程(中文)
2023/9/21 3:03:18 419KB relion 生物 电镜
1
本次上传的文件,修改了,上一版本中在登录界面点退出--》取消,不能再登录的Bug这是一个考试系统,主要实现的题目有单项选择题,多项选择题和判断题。
1.对于每个题都是每次运行本软件的时候自动从题库中随机抽取。
2.在data文件夹下有一个配制文件:a.它可以修改每个类型的题目的数量。
b.它可以修改第个题目的分值。
c.它可以修改考试的限定时间。
3.在交卷后就可以查看,本次考试的得分。
并根据本次考试满分的60%做为标准,来判断你是否通过这次考试。
4.后台是一个Access数据库,就可以加入新的题目。
并不需要修改原程序。
判断题的表是judge,单选是single,多选是moresingle表,5.在Access中可以添加新的考试人员。
只要添加student表中的信息就可以了。
6.在每次交卷后的成绩,会重新保存到数据库中。
7.每次交卷后,都可以把这次所做的题目导出,包括答案和学生所做的答案,以及这次考试的得分。
8.在没有交卷前,做完的题目可以再次进行修改。
9.显示现在时间其它内容:10.做了一个上传试题的jsp网站平台(大多使用的是jstl标签实现,包括连接数据库,缺点是不复合MVC框架)。
a.可以判断上传试题的有效,包括是
1
不耐烦不是没有人有时间收集数据(即将推出)不耐烦如何翻译查询介绍Impatient是一个库,它提供了为SQL数据库构建功能强大的LINQ查询提供程序所需的基础结构。
它提供以下支持:导航属性几乎每个标准的LINQ查询运算符,包括(但不限于):Select/Where和他们的“索引参数”变种OrderBy/ThenBy及其Descending变体Join/GroupJoin/SelectMany/GroupJoinGroupByAverage/Count/LongCount/Max/Min/SumAll/Any/ContainsFirst/Last/Single/ElementAt及其OrDefault变体Concat/Except/Intersect/UnionSkipWhile/TakeWhile及其“索引参数”变体DistinctReverseSequenceEqualZip数据库本机JSON支持(例如SQLServer的FORJSON)
2023/5/30 13:37:53 653KB linq sql orm csharp
1
Introduction Few phenomena characterize our time more uniquely and powerfully than the rapid rise and influence of information technologies. These technologies have unleashed a tsunami of data that rolls over and flattens us in its wake. Taming this beast has become a primary goal of the information industry. One tool that has emerged from this effort in recent years is the information dashboard. This single‐screen display of the most important information people need to do a job, presented in a way that allows them to monitor what's going on in an instant, is a powerful new medium of co妹妹unication. At least it can be, but only when properly designed. Most information dashboards that are used in business today fall far short of their potential. The root of the problem is not technologyat least not primarilybut poor visual design. To serve their purpose and fulfill their potential, dashboards must display a dense array of information in a small amount of space in a manner that co妹妹unicates clearly and i妹妹ediately. This requires design that taps into and leverages the power of visual perception to sense and process large chunks of information rapidly. This can be achieved only when the visual design of dashboards is central to the development process and is informed by a solid understanding of visual perceptionwhat works, what doesn't, and why. No technology can do this for you. You must bring this expertise to the process. Take heartthe visual design skills that you need to develop effective dashboards can be learned, and helping you learn them is the sole purpose of this book. If the information is important, it deserves to be co妹妹unicated well.
2023/5/11 11:47:20 8.25MB Dashboard Design Visual
1
#GPF##一、GPF(GraphProcessingFlow):行使图神经收集处置下场的普通化流程一、图节点预展现:行使NE框架,直接患上到全图每一个节点的Embedding;二、正负样本采样:(1)单节点样本;
(2)节点对于样本;
三、抽取封锁子图:可做类化处置,建树一种通用图数据结构;四、子图特色领悟:预展现、节点特色、全局特色、边特色;五、收集配置配备枚举:可所以图输入、图输入的收集;
也可所以图输入,分类/聚类下场输入的收集;六、熬炼以及测试;##二、首要文件:一、graph.py:读入图数据;二、embeddings.py:预展现学习;三、sample.py:采样;四、subgraphs.py/s2vGraph.py:抽取子图;五、batchgraph.py:子图特色领悟;六、classifier.py:收集配置配备枚举;七、parameters.py/until.py:参数配置配备枚举/帮手文件;##三、使用一、在parameters.py中配置配备枚举相关参数(可默许);
二、在example/文件夹中运行响应的案例文件--搜罗链接料想、节点外形料想;
以链接料想为例:###一、导入配置配备枚举参数```fromparametersimportparser,cmd_embed,cmd_opt```###二、参数转换```args=parser.parse_args()args.cuda=notargs.noCudaandtorch.cuda.is_available()torch.manual_seed(args.seed)ifargs.cuda:torch.cuda.manual_seed(args.seed)ifargs.hop!='auto':args.hop=int(args.hop)ifargs.maxNodesPerHopisnotNone:args.maxNodesPerHop=int(args.maxNodesPerHop)```###三、读取数据```g=graph.Graph()g.read_edgelist(filename=args.dataName,weighted=args.weighted,directed=args.directed)g.read_node_status(filename=args.labelName)```###四、患上到全图节点的Embedding```embed_args=cmd_embed.parse_args()embeddings=embeddings.learn_embeddings(g,embed_args)node_information=embeddings#printnode_information```###五、正负节点采样```train,train_status,test,test_status=sample.sample_single(g,args.testRatio,max_train_num=args.maxTrainNum)```###六、抽取节点对于的封锁子图```net=until.nxG_to_mat(g)#printnettrain_graphs,test_graphs,max_n_label=subgraphs.singleSubgraphs(net,train,train_status,test,test_status,args.hop,args.maxNodesPerHop,node_information)print('#train:%d,#test:%d'%(len(train_graphs),len(test_graphs)))```###七、加载收集模子,并在classifier中配置配备枚举相关参数```cmd_args=cmd_opt.parse_args()cmd_args.feat_dim=max_n_label+1cmd_args.attr_dim=node_information.shape[1]cmd_args.latent_dim=[int(x)forxincmd_args.latent_dim.split('-')]iflen(cmd_args.latent_dim)
2023/4/8 5:48:07 119KB 图神经网络 Graph Proces GPF
1
该方式为在有雾天色上来雾的一种方式,有很高的参考价钱
2023/3/25 1:51:43 722KB 去雾
1
高斯过程(GP)模型是非参数贝叶斯回归的一种灵活方法。
然而,在大数据中使用GP模型的大多数现有工作都是为单变量输出时间序列定义的,称为单任务GPs(single-taskGPs,STGP)。
在此,利用GPs同时对多个相关单变量生理时间序列进行建模。
由此产生的多任务GP(MTGP)框架可以学习多个信号之间的相关性,即便它们可能以不同的频率采样,并具有针对不同间隔的训练集。
MTGPs可有效地学习了生理时间序列之间的相关性,从而提高了建模精度。
多任务高斯过程模型Matlab工具箱(包括多个例子)
1
无水印,数字版,有目次。
MasteringOpenStack-SecondEdition:Design,deploy,andmanagecloudsinmidtolargeITinfrastructuresPaperback–April26,2017Discoveryourcompleteguidetodesigning,deploying,andmanagingOpenStack-basedcloudsinmid-to-largeITinfrastructureswithbestpractices,expertunderstanding,andmoreAboutThisBookDesignanddeployanOpenStack-basedcloudinyourmid-to-largeITinfrastructureusingautomationtoolsandbestpracticesKeepyourselfup-to-datewithvaluableinsightsintoOpenStackcomponentsandnewservicesinthelatestOpenStackreleaseDiscoverhowthenewfeaturesinthelatestOpenStackreleasecanhelpyourenterpriseandinfrastructureWhoThisBookIsForThisbookisforsystemadministrators,cloudengineers,andsystemarchitectswhowouldliketodeployanOpenStack-basedcloudinamid-to-largeITinfrastructure.Thisbookrequiresamoderatelevelofsystemadministrationandfamiliaritywithcloudconcepts.WhatYouWillLearnExplorethemainarchitecturedesignofOpenStackcomponentsandcore-by-coreservices,andhowtheyworktogetherDesigndifferenthighavailabilityscenariosandplanforano-single-point-of-failureenvironmentSetupamultinodeenvironmentinproductionusingorchestrationtoolsBoostOpenStack'sperformancewithadvancedconfigurationDelveintovarioushypervisorsandcontainertechnologysupportedbyOpenStackGetfamiliarwithdeploymentmethodsanddiscoverusecasesinarealproductionenvironmentAdopttheDevOpsstyleofautomationwhiledeployingandoperatinginanOpenStackenvironmentMonitorthecloudinfrastructureandmakedecisionsonmaintenanceandperformanceimprovement
2015/3/1 15:32:33 15.31MB Mastering OpenStack (Second Edition)
1
matlab希尔伯特变换代码使用希尔伯特变换和MATLAB的单边带调制自述文件该项目旨在了解使用希尔伯特变换的单边带抑制载波调制。
使用MATLAB2020a完成仿真。
在该项目中,还将单边带调制与双边带调制进行了比较。
内容:-单边带调制.m-包含MATLAB代码Single-sideband-modulation.mlx-MATLAB的实时编辑器文件单边带调制.pdf-该项目的详细报告,解释了单边带调制以及如何使用希尔伯特变换来获得单边带调制。
该报告还包含了单边带调制绝对于双边带调制的优缺点。
2022/9/20 23:09:32 664KB 系统开源
1
matlab希尔伯特变换代码使用希尔伯特变换和MATLAB的单边带调制自述文件该项目旨在了解使用希尔伯特变换的单边带抑制载波调制。
使用MATLAB2020a完成仿真。
在该项目中,还将单边带调制与双边带调制进行了比较。
内容:-单边带调制.m-包含MATLAB代码Single-sideband-modulation.mlx-MATLAB的实时编辑器文件单边带调制.pdf-该项目的详细报告,解释了单边带调制以及如何使用希尔伯特变换来获得单边带调制。
该报告还包含了单边带调制绝对于双边带调制的优缺点。
2022/9/20 23:05:19 664KB 系统开源
1
共 23 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡