首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏GPUS开发者

    DIGITS

    给大家介绍一个工具,叫做DIGITSDIGITS是一个基于WEB UI交互式的深度学习训练系统。对于深度学习的初学者或数据科学家来说,这个工具能够为他们提供极大的便利性,主要有四个方面的功能。 比如说我可以把一些原始的jpeg格式的图片转成lmdb或者leveldb这样的数据库导入到DIGITS。 2、我可以利用DIGITS去配置我的网络模型,比如我去选某个Deep Learning的框架,某一个标准的模型,比如AlexNet、GoogLeNet等,或者自定义一个网络模型,然后去设置模型训练参数, 目前DIGITS支持的深度学习框架包括了Caffe、PyTorch和TensorFlow,支持的算法主要是包含了图像分类、图像分割、目标检测。

    1.1K60发布于 2018-04-02
  • 来自专栏计算机视觉战队

    NVIDIA DIGITS

    除了CUDNN, 又出了DIGITS,真是希望小学生也能学会深度学习,然后去买他们的卡。 NVIDIA DIGITS是一款web应用工具,在网页上对Caffe进行图形化操作和可视化,用于Caffe初学者来说,帮助非常大。 一、安装DIGITS 4.0 DIGITS是运行在cuda和caffe基础上的,所以要先配置好cuda+caffe那是毫无疑问的了。 二、运行digits 默认情况下,digits的安装目录为: /usr/share/digits 安装完成后,打开浏览器,地址栏输入http://localhost/就可以了,就是这么简单。 digits提供了一个脚本文件,用于下载mnist,cifar10和cifar100三类数据,并转换成png格式图片。

    1.2K80发布于 2018-04-18
  • 来自专栏python3

    Reverse digits of an

    python小题: Reverse digits of an integer.

    68430发布于 2020-01-13
  • 来自专栏算法修养

    FZU 2105 Digits Count

     Problem 2105 Digits Count Accept: 444    Submit: 2139 Time Limit: 10000 mSec    Memory Limit : 262144

    71750发布于 2018-04-27
  • 来自专栏算法修养

    Add Digits

    同余定理,任何一个10进制数n 都可以表示成 n = a10^x + b10^(x-1) + .... c*10^0

    42920发布于 2020-04-21
  • 来自专栏司六米希

    【刷题】Sum of Digits【1】

    【刷题】Sum of Digits【1】 一、题目 1.题目描述 二、解题报告 1.思路分析 2.代码详解 一、题目 1.题目描述 题目: 输入: 输出: 示例 :

    49210编辑于 2022-11-15
  • 来自专栏SnailTyan

    Add Digits

    9:res; } }; Reference https://leetcode.com/problems/add-digits/description/

    43410发布于 2019-05-25
  • 【LightOJ】1045 - Digits of Factorial(数论)

    点击打开题目 1045 - Digits of Factorial PDF (English) Statistics Forum Time Limit: 2 second(s) Memory

    34210编辑于 2025-08-27
  • 来自专栏计算机视觉战队

    基础入门:NVIDIA DIGITS

    除了CUDNN, 又出了DIGITS,真是希望小学生也能学会深度学习,然后去买他们的卡。 NVIDIA DIGITS是一款web应用工具,在网页上对Caffe进行图形化操作和可视化,用于Caffe初学者来说,帮助非常大。 一、安装DIGITS 4.0 DIGITS是运行在cuda和caffe基础上的,所以要先配置好cuda+caffe那是毫无疑问的了。 二、运行digits 默认情况下,digits的安装目录为: /usr/share/digits 安装完成后,打开浏览器,地址栏输入http://localhost/就可以了,就是这么简单。 digits提供了一个脚本文件,用于下载mnist,cifar10和cifar100三类数据,并转换成png格式图片。

    94410编辑于 2022-01-28
  • 来自专栏Reck Zhang

    LeetCode 0258 - Add Digits

    Add Digits Desicription Given a non-negative integer num, repeatedly add all its digits until the result

    50240发布于 2021-08-11
  • 来自专栏眯眯眼猫头鹰的小树杈

    Remove K Digits

    题目要求 Given a non-negative integer num represented as a string, remove k digits from the number so that Example 1: Input: num = "1432219", k = 3 Output: "1219" Explanation: Remove the three digits 4, 3, and Example 3: Input: num = "10", k = 2 Output: "0" Explanation: Remove all the digits from the number and

    59930发布于 2019-03-20
  • 来自专栏Reck Zhang

    LeetCode 0402 - Remove K Digits

    Remove K Digits Desicription Given a non-negative integer num represented as a string, remove k digits Example 1: Input: num = "1432219", k = 3 Output: "1219" Explanation: Remove the three digits 4, 3, and Example 3: Input: num = "10", k = 2 Output: "0" Explanation: Remove all the digits from the number and

    36120发布于 2021-08-11
  • 来自专栏Bingo的深度学习杂货店

    Q402 Remove K Digits

    Given a non-negative integer num represented as a string, remove k digits from the number so that the Example 1: Input: num = "1432219", k = 3 Output: "1219" Explanation: Remove the three digits 4, 3, and Example 3: Input: num = "10", k = 2 Output: "0" Explanation: Remove all the digits from the number and

    52120发布于 2018-10-11
  • 来自专栏desperate633

    LintCode Add Digits分析代码

    Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.

    31410发布于 2018-08-22
  • 来自专栏后端技术

    Remove K Digits

    思路 从前往后遍历数字,如果某一位的数字比下一位大,说明只要删除这一位,让下一位数字来代替这一位,就可以让整个数字变小。

    41620发布于 2019-05-25
  • 来自专栏LeetCode

    LeetCode 258.Add digits

    258.Add digits Given a non-negative integer num, repeatedly add all its digits until the result has only

    42711发布于 2018-11-02
  • 来自专栏算法修养

    Sequential Digits

    题目 class Solution { public: int ans[10005]; vector<int> sequentialDigits(int low, int high) { int x = 1; int pos=0; int tag=1; for(int i=1;i<=9;i++) { x=fun2(x); tag*=10;

    73841发布于 2019-12-18
  • 来自专栏chenjx85的技术专栏

    leetcode-258-Add Digits

    题目描述: Given a non-negative integer num, repeatedly add all its digits until the result has only one digit

    71140发布于 2018-05-21
  • 来自专栏计算机视觉与深度学习基础

    Add Digits

    Given a non-negative integer num, repeatedly add all its digits until the result has only one digit

    65550发布于 2018-01-12
  • 来自专栏搬砖记录

    04 Find Numbers with Even Number of Digits

    题目 Given an array nums of integers, return how many of them contain an even number of digits. Example 1: Input: nums = [12,345,2,6,7896] Output: 2 Explanation: 12 contains 2 digits (even number of digits). 345 contains 3 digits (odd number of digits). 2 contains 1 digit (odd number of digits ). 6 contains 1 digit (odd number of digits). 7896 contains 4 digits (even number of digits). Therefore only 12 and 7896 contain an even number of digits.

    36130发布于 2021-08-18
领券