Kim, KwonHyun
Kim, KwonHyun
I thought maybe using `.view()` may be faster. And it seems. ``` w, h = 256,256 l = np.random.randint(0,4,(h,w,3), dtype=np.uint8) l2 = np.zeros((h,w,4), dtype=np.uint8) l2[...,:3]=l[...,:3] l2[...,3] = l2[...,2] l3 =...
Using TensorFlow backend. Output_fold is GAN_OUT 2018-11-25 08:56:45.589349: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX 2018-11-25 08:56:45.679946: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964]...
Hello, great package. `stri_datetime_parse('2022-01-01', 'yyyy MM dd')` works well, except that time part is set to current time, something like ``` stri_datetime_parse('2022-01-01', 'yyyy MM dd') [1] "2022-01-01 10:46:40 KST" ```...
Hello, great package! I refrain from naming any module the same as python standard module. So I scraped from Python Module Index site and I recently found your module so...
Hi, great package! I wish we could do visreg2d for multinomial regression, something like the following, ```r mu1 = c(-2,2) mu2 = c(0,0) mu3 = c(2,-2) sigma = matrix(c(2,1.4,1.4,2), 2,2)...
### pycaret version checks - [X] I have checked that this issue has not already been reported [here](https://github.com/pycaret/pycaret/issues). - [X] I have confirmed this bug exists on the [latest version](https://github.com/pycaret/pycaret/releases)...
I am trying to install datatable using `pip install datatable` in MacOS(BigSur). When I am trying to install it in mamba environment, I get the following. Will the environement mamba...
The link leads to google drive which I don't have right to access :( Below is the excerpt ==== You can download one or more models (833MB each) trained on...
```python x = ' 관심 0&※ 간섭 있습니다' spell_checker.check(x) Traceback (most recent call last): File "", line 1, in File "/Users/kwhkim/opt/miniconda3/envs/py38spacing/lib/python3.8/site-packages/hanspell/spell_checker.py", line 68, in check 'checked': _remove_tags(html), File "/Users/kwhkim/opt/miniconda3/envs/py38spacing/lib/python3.8/site-packages/hanspell/spell_checker.py", line...
### Description As I look at the source code, https://github.com/braverock/PerformanceAnalytics/blob/master/R/SemiDeviation.R SemiVariance should be `return(DownsideDeviation(R, MAR=mean(R), method="subset")^2)` not `return(DownsideDeviation(R, MAR=mean(R), method="subset"))` According to the definition https://www.investopedia.com/terms/s/semivariance.asp ### Minimal, reproducible example ```r...