码迷,mamicode.com
首页 >  
搜索关键字:def    ( 28626个结果
工作流框架Activiti中仿真引擎Crystalball的使用分析
Activiti-Crystalball简介 Activiti-Crystalball (CrystalBall)是Activiti业务流程管理平台的仿真引擎 .CrystalBall可以使用用用户模拟流程场景: 决策支持: 对于生产流程, 比如是否应该向系统添加更多资料以达到截止日期 优化和验证: ...
分类:其他好文   时间:2021-06-15 17:55:23    阅读次数:0
实验六
from turtle import * def square(size=50, rbg='blue'): pencolor(rbg) for i in range(4): fd(size) left(90) setup(800,600) speed(0) for i in range(10): s ...
分类:其他好文   时间:2021-06-15 17:36:49    阅读次数:0
Tensorflow2.0之Minist手写数字识别运行通过源码
from matplotlib import pyplot as mp import tensorflow as tf from tensorflow import keras from tensorflow.keras import datasets ,layers ,optimizers def ...
分类:其他好文   时间:2021-06-15 17:35:48    阅读次数:0
ssd loss详解
def encode(matched, priors, variances): """Encode the variances from the priorbox layers into the ground truth boxes we have matched (based on jaccard ...
分类:其他好文   时间:2021-06-15 17:35:17    阅读次数:0
每日LeetCode - 125. 验证回文串(Python 3)
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:编程语言   时间:2021-06-13 10:55:47    阅读次数:0
在 CentOS 上安装及使用 VirtualBox
https://blog.csdn.net/wxb880114/article/details/80937659?utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearn ...
分类:其他好文   时间:2021-06-13 10:26:12    阅读次数:0
46. 全排列
给定一个不含重复数字的数组 nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。 示例 1: 输入:nums = [1,2,3]输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]示例 2: 输入:nums = [0,1]输出:[ ...
分类:其他好文   时间:2021-06-13 09:31:19    阅读次数:0
Django(61)认证组件源码分析
认证组件源码入口 APIView下的dispatch下的self.initial(request, *args, **kwargs),源码如下: def initial(self, request, *args, **kwargs): """ 在调用方法处理程序之前运行任何需要发生的事情 """ # ...
分类:其他好文   时间:2021-06-13 09:21:54    阅读次数:0
实验六
from turtle import * def square(size = 50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) fo ...
分类:其他好文   时间:2021-06-13 09:19:11    阅读次数:0
leetcode-python-汉明距离
1)取异或,然后计算1的个数 class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count ...
分类:编程语言   时间:2021-06-11 19:07:12    阅读次数:0
28626条   上一页 1 ... 8 9 10 11 12 ... 2863 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!