Duino

Results 35 comments of Duino

Maybe gpu OOM. You can take a check.

Do you use CPU or GPU?

I met this problem when using mxnet and I fix it by switch cuda and cudnn version from cuda-9.1 to cuda-9.0. BTW, I install mxnet from src.

error logging: ``` [i 0326 09:05:17.686328 60 v1 __init__.py:102] Run cmd: git branch fatal: Not a git repository (or any parent up to mount point /home) Stopping at filesystem boundary...

Here is what happened. I remove `${HOME}/.cache/jittor` and re-run `python3.7 -m jittor.test.test_cutt_transpose_op`. After waiting a-cup-of-coffee time, test passed !!! ``` (base) ➜ jittor git:(master) ✗ python3.7 -m jittor.test.test_cutt_transpose_op [i 0326...

My loss ends at around 6 and mAP (trained on voc2007trainval and test on voc2007test) is 0.683, using SSD300

Hey, I make another cpp version of mtcnn. Here is the [repo](https://github.com/DuinoDu/mtcnn_cpp).

Maybe you can refer to python version.

You can inject json into mongo using below code: ``` from pymongo import MongoClient class SseHelper: def __init__(self): ¦ client = MongoClient('127.0.0.1:3001') ¦ db = client.meteor ¦ self.SseSamples = db.SseSamples...