Jingbei Li

Results 122 comments of Jingbei Li

Oh, it should be the changes of torch, sorry. BTW, all torch stuff on my system is latest. The usage of `for i,layer in ipairs(cnn.modules)` can be found in: https://github.com/torch/demos/blob/master/person-detector/model.lua

I get ``` 0 46 ``` here.

My torch is installed from Archlinux user repository. Maybe I should take a look at the PKGBUILD.

> Please push fixes in separate commits. OK. The last change only replaces `oracledb.OBJECT` with `oracle.DB_TYPE_OBJECT`. These two are same but the first one is deprecated. This won't fix the...

https://github.com/oracle/python-oracledb/issues/43#issuecomment-1206453289 According the reply of the oracledb group, `oracle.DB_TYPE_OBJECT` is not currently supported but may be supported in the future. For now, we have to enable the thick mode of...

I've updated the code to enable this test only for the thick mode of oracledb and cx_Oracle. But I have no idea how to setup a test for the thick...

> You can call it either in the application or you can call after import oracledb in the following file django/db/backends/oracle/base.py. It will force the mode to be thick if...

Well I wish there could be an option to still use the thin mode if the thick mode is set as the default since I don't need the geometry field.

@felixxm Hi, I have tried to enable the thick mode in `tests/dbshell/test_oracle.py` but I'm not sure if it will work. If it works then the PR is ready for review...

@suraj-ora-2020 Thanks for the tests. `django/db/backends/oracle/base.py:57` gives a warning when oracledb is in the thin mode. However the test wants no warning at all. I've already called `oracledb.init_oracle_client()` in `tests/dbshell/test_oracle.py:15`....