Skip to content
#

Computer vision

Computer vision is an interdisciplinary field that deals with how computers can be made to gain high-level understanding of digital images and videos.

Here are 7,620 public repositories matching this topic...

zhou-frank
zhou-frank commented Sep 24, 2019

should I scale the multi-gpu lr to batchsize * single-gpu lr?
e.g. pix2pix model default lr = 0.0002(1 batchsize 1 gpu). When I use 16 batchsize and four gpu(4 image per gpu),I think we should set lr = 0.0002 * 16 = 0.0032.
Meanwhile, using WarmupScheduler to avoid gradient exploding problem.
thanks for any help.

saurabhbidwai
saurabhbidwai commented Sep 24, 2018

if name == 'main':
main(parse_arguments(sys.argv[1:]))
Traceback (most recent call last):

File "", line 2, in
main(parse_arguments(sys.argv[1:]))

File "", line 16, in parse_arguments
return parser.parse_args(argv)

File "C:\Users\DELL\Anaconda3\lib\argparse.py", line 1730, in parse_args

Micla-SHL
Micla-SHL commented Dec 16, 2019

IF YOU ARE REPORTING A BUG OR PROBLEM WITH DLIB THEN FILL OUT THE ENTIRE TEMPLATE BELOW. ISSUES ASKING QUESTIONS ABOUT WHY SOMETHING DOESN'T WORK THAT FAIL TO FILL OUT THE ENTIRE TEMPLATE WILL BE CLOSED.

It is OK to suggest interesting improvements to dlib, even if you are not volunteering to implement them. **However, the issue tracker is not a code writing service, do not ask for someone to

lkiani
lkiani commented May 18, 2019

Which images should I use in the evaluation code?
I compared the generated images with Ground truth images and generated images with labels but got an error and the result of all the parameters was zero.
Generated images should be converted to label?
Solving this problem is very important to me.
thank you
![57882413-e101bd00-7838-11e9-8ffe-b0ef87f6e346](https://user-images.githubusercontent.c

ludwig
weifengpdx
weifengpdx commented Dec 4, 2019

Describe the bug
A clear and concise description of what the bug is.

The User Guide description for the H3 Input Features and Encoders is using Date Feature's description, needs update.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Please provide code, yaml definition file and a sample of data in order t

greyltc
greyltc commented Nov 25, 2018
  • Operating System: Linux
  • Serpent.AI Version: 2018.1.2
  • Backend: CPU

Expected result

sprites should be not be located if they're not on screen

Encountered result

false positive sprite location result

Steps to reproduce

i'm trying to navigate and click menu items with buttons of similar colors with

sprite_locator = SpriteLocator()
location = sprite_locato
sotte
sotte commented Oct 3, 2019

Problem

torchvision has quite a few transforms, but I often find myself using the wrong one because the I misread/just skimmed the doc strings.

Solution

I'm suggesting to add examples / visualizations for each transform. This way it's easier to know what a given transform does.

After this improvement there should be an example (maybe a few where it makes sense) for each transform in

SergioRAgostinho
SergioRAgostinho commented Nov 27, 2019
[The C compiler identification is GNU 7.4.0
-- The CXX compiler identification is GNU 7.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- 
Xiaokeai18
Xiaokeai18 commented Mar 21, 2019

In the tutorial doc of chapter 1 "Basics/variables", there might be a misktake here:

# "variable_list_custom" is the list of variables that we want to initialize.
variable_list_custom = [weights, custom_variable]

# The initializer
init_custom_op = tf.variables_initializer(var_list=all_variables_list)

The last line of the code above might end up with var_list=**variable_list_

You can’t perform that action at this time.