python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Pickle and Numpy versions
I have some old sklearn models which I can't retrain. They were pickled long time ago with unclear versions. I can open them with Python 3.6 and Numpy 1.14. But when I try to move to Python 3.8 with N...
Anastasiia Iurshina
Votes: 0
Answers: 1
Is it possible to use .pkl file in my flutter app?
Is it possible to deploy .pkl file in flutter?
My .pkl file contains a simple function that returns the spectrogram of the input audio file.
this step represents preprocessing the audio file before in...
Salwa
Votes: 0
Answers: 0
Merge partial pickle files to get back my original pickled model
I have pickled a RF model on my machine and its size is of 360Mb,
Now I want to upload it to GitHub but I cannot do it by file upload nor by the terminal,
I tried git lfs too but it didn't work neithe...
amk
Votes: 0
Answers: 1
Unpickling heavy python Object returns error: EOFError Ran out of input Python
I have made a machine learning algorithm (RF) and saved it as a pickle for further use and the file is 5gb. When I unpickle it I get the error :
reg = pickle.load(f)
EOFError: Ran out of input
This i...
Hamzalihi
Votes: 0
Answers: 0