Process finished with exit code -1073741819 (0xC0000005) Pycharm (SVD)

0

I am trying to compute the SVD of a large matrix (4799 x 53130) using Pycharm as my IDE. The following returns the exit code -1073741819 (0xC0000005), but no error message is displayed. I have looked up this error code on here and people have found a mixture of things causing it. I have re-installed Pycharm and all dependencies, yet this issue persists. Any direction would be greatly appreciated.

import numpy as np
import pandas as pd
from scipy.linalg import svd
df = pd.read_pickle(r'filepath\data.pkl')
df = df.to_numpy()
svd(df) 

EDIT: This problem is specifically with the SVD function, the related questions only has the error code in common.

python
pycharm
svd
asked on Stack Overflow May 6, 2021 by boigadendro • edited May 6, 2021 by boigadendro

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0