ivan_kudryavtsev
ivan_kudryavtsev t1_j8sfi40 wrote
Reply to comment by [deleted] in Candidates for lightweight object detector NNs ? by [deleted]
I would say, if it is not a very wild environment, nn may be excessive.
ivan_kudryavtsev t1_j8sfa3p wrote
Reply to comment by [deleted] in Candidates for lightweight object detector NNs ? by [deleted]
Quick discovery: https://note.nkmk.me/en/python-opencv-barcode/
ivan_kudryavtsev t1_j8se6xm wrote
Try yolo tiny. Must detect well if it is trained properly. But do you think you need a nn model? Scanners read barcodes without neural networks.
ivan_kudryavtsev t1_j4c5702 wrote
Reply to comment by Infamous_Age_7731 in Cloud VM GPU is much slower than my local GPU by Infamous_Age_7731
Ram performance also may be affected by meltdown, spectre patches.
ivan_kudryavtsev t1_j3q0c02 wrote
Reply to comment by BellyDancerUrgot in Cloud VM GPU is much slower than my local GPU by Infamous_Age_7731
>Oh I thought maybe he is going for distributed learning since he has access to 2 GPUs. In that case MPI has some overhead simply because it has to replicate, scatter and gather all the gradients per batch every epoch.
It looks like no; they speculated about the internal design of A100.
ivan_kudryavtsev t1_j3pssyp wrote
Reply to comment by BellyDancerUrgot in Cloud VM GPU is much slower than my local GPU by Infamous_Age_7731
Why so? GPUs are passed to VM in a pass-through mode, so no significant performance pitfails must happen. I recommend OP to look at CPU %steal, nvidia-smi (maybe it is A100 1/7 shard, not a full GPU). Run a single and multithreaded sysbench
to compare CPU and RAM. Also, PCI-E generation or deficated bandwidth can be outperforming on your hardware if a cloud provider uses a not well-balanced custom build.
ivan_kudryavtsev t1_iycjqd9 wrote
Just take a look at list of Intel's products with R.I.P. status to get the answer. The only thing Intel guarantees to live is X86_64 CPU.
ivan_kudryavtsev t1_iy7ncq9 wrote
Maybe, a decision tree is an example of a NN? I mean that NN is more generic structure because it may include an arbitrary Neuron design and custom layers design?
ivan_kudryavtsev t1_j8vtjvh wrote
Reply to comment by [deleted] in Candidates for lightweight object detector NNs ? by [deleted]
How could we recognize that you want whole processing to be done purely in-browser? Anyway, just google for "webassembly barcode reader". There are implementations available.