dbl
dbl
I got this error in self.document_vectors = self._embed_documents(documents) with this example: ``` import numpy as np import pandas as pd import json import os import ipywidgets as widgets from IPython.display...
## Describe the issue This example plot is failing: ``` %matplotlib ipympl import matplotlib.pyplot as plt import numpy as np fig, ax = plt.subplots() x = np.linspace(0, 2*np.pi, 100) y...
I am running python 3.8.5 on OS X Monterey 12.1 Three test failed. ``` % nosetests -s hdbscan ...........................................EE..........E ====================================================================== ERROR: hdbscan.tests.test_hdbscan.test_hdbscan_is_sklearn_estimator ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/davidlaxer/tensorflow-metal/lib/python3.8/site-packages/nose/case.py",...
My training seems to 'hang' on the SingleTrainer: E.g. ``` trainer = SingleTrainer(keras_model=model, worker_optimizer=optimizer, loss=loss, features_col="features_normalized", label_col="label_output", num_epoch=5, batch_size=32) trained_model = trainer.train(training_set) 'SequentialWorker' object has no attribute 'add_history' [Stage 16:>...
``` URLError: ``` mldata.org appears to be down. Please see: https://github.com/scikit-learn/scikit-learn/issues/8588
I am trying to build Flink on OS X Monterey. ``` flink % java -version openjdk version "17.0.1" 2021-10-19 OpenJDK Runtime Environment Temurin-17.0.1+12 (build 17.0.1+12) OpenJDK 64-Bit Server VM Temurin-17.0.1+12...
I'm running on Tensorflow version: 1.4.0 Anaconda Python 3.6 OS X 10.11.6 No GPU I trained the models in my own environment: iterations = 10 for i in range(iterations): nextBatch,...
## Current Behavior ``` $ conda create -n tf -c conda-forge python=3.6 tensorflow Solving environment: done ==> WARNING: A newer version of conda exists. ``` ``` ## Expected Behavior Conda...
How is normalize in image_utils.py suppose to work on images with 4 dimensions? ``` File ~/tensorflow-metal/lib/python3.8/site-packages/transformers/image_utils.py:143, in ImageFeatureExtractionMixin.normalize(self, image, mean, std) 141 return (image - mean[:, None, None]) / std[:,...
Running on GoogleColab with python 3 + GPU: Issue in preprocess.py on line #26 for method nlp(): ``` nlp = spacy.load('en') text = nlp(text, tag=True, parse=False, entity=False) ``` nlp() unknown...