-
importing of some modules, particularly those that use stewi data results in objects being stored in memory ([example](https://github.com/USEPA/ElectricityLCI/blob/master/electricitylci/egrid_faciliti…
-
```
...
from cuml.linear_model import LogisticRegression
from cuml.metrics import accuracy_score
...
print("Initializing Logistic Regression model...")
model = LogisticRegression()
print("Tra…
-
Hi,
Thanks for the development of QSARtuna, it's very useful.
I tried the code in notebook/QSARtuna_Tutorial.ipynb,chemprop.predict_from_smiles reports error when explain is set to True.
```
…
-
### Describe the issue
Some of the estimators that use joblib for parallelization use process-based backend, while other use threads-based backend. Ideally, we want this to be a parameter tunable b…
-
```Python
import logbook
from sklearn.cluster import KMeans
import numpy as np …
-
I think we should move away from using mem.cache for caching fft results. It does not persist across notebooks/sessions. Instead, I propose we just save the results directly in the processed_data fol…
-
So I'm trying to work with a script of mine which is a pipeline containing a ColumnTransformer in cross-validation. I'm trying to do some profiling, but each of these three things calls into joblib, w…
-
I'm receiving `joblib` warnings on "persisting input arguments"
```
pipeline.py:184: UserWarning: Persisting input arguments took 0.92s to run.
If this happens often in your code, it can cause pe…
-
Here is a failing example that uses the Dask joblib backend to parallelize a nested RandomForestClassifier within a RandomSearchCV
```python
from scipy.stats import randint as sp_randint
from s…
-
Hello when running:
node_brc=load(prefix+'node_brc.joblib')
edge_brc=load(prefix+'edge_brc.joblib')
I get this error
504 obj = None
505 try:
--> 506 obj = unpickler.load()
507…