Closed mrocklin closed 4 years ago
It looks like CI is now failing
https://travis-ci.org/github/dask/dask-examples/builds/716774531
Some highlights
I'll take a look today or Monday.
It looks like CI is now failing
https://travis-ci.org/github/dask/dask-examples/builds/716774531
Some highlights
Prophet install
", line 1, inVersion check issue
``` Function: execute_task args: ((TPot
```python-traceback nbconvert.preprocessors.execute.CellExecutionError: An error occurred while executing the following cell: ------------------ tp.fit(X_train, y_train) ------------------ --------------------------------------------------------------------------- TypeError Traceback (most recent call last) ~/miniconda/envs/test/lib/python3.8/site-packages/tpot/base.py in fit(self, features, target, sample_weight, groups) 713 warnings.simplefilter('ignore') --> 714 self._pop, _ = eaMuPlusLambda( 715 population=self._pop, ~/miniconda/envs/test/lib/python3.8/site-packages/tpot/gp_deap.py in eaMuPlusLambda(population, toolbox, mu, lambda_, cxpb, mutpb, ngen, pbar, stats, halloffame, verbose, per_generation_function) 225 --> 226 population[:] = toolbox.evaluate(population) 227 ~/miniconda/envs/test/lib/python3.8/site-packages/tpot/base.py in _evaluate_individuals(self, population, features, target, sample_weight, groups) 1333 warnings.simplefilter('ignore') -> 1334 tmp_result_scores = list(dask.compute(*tmp_result_scores)) 1335 ~/miniconda/envs/test/lib/python3.8/site-packages/dask/base.py in compute(*args, **kwargs) 443 --> 444 results = schedule(dsk, keys, **kwargs) 445 return repack([f(r, *a) for r, (f, a) in zip(results, postcomputes)]) ~/miniconda/envs/test/lib/python3.8/site-packages/distributed/client.py in get(self, dsk, keys, restrictions, loose_restrictions, resources, sync, asynchronous, direct, retries, priority, fifo_timeout, actors, **kwargs) 2687 try: -> 2688 results = self.gather(packed, asynchronous=asynchronous, direct=direct) 2689 finally: ~/miniconda/envs/test/lib/python3.8/site-packages/distributed/client.py in gather(self, futures, errors, direct, asynchronous) 1981 local_worker = None -> 1982 return self.sync( 1983 self._gather, ~/miniconda/envs/test/lib/python3.8/site-packages/distributed/client.py in sync(self, func, asynchronous, callback_timeout, *args, **kwargs) 831 else: --> 832 return sync( 833 self.loop, func, *args, callback_timeout=callback_timeout, **kwargs ~/miniconda/envs/test/lib/python3.8/site-packages/distributed/utils.py in sync(loop, func, callback_timeout, *args, **kwargs) 338 typ, exc, tb = error[0] --> 339 raise exc.with_traceback(tb) 340 else: ~/miniconda/envs/test/lib/python3.8/site-packages/distributed/utils.py in f() 322 future = asyncio.wait_for(future, callback_timeout) --> 323 result[0] = yield future 324 except Exception as exc: ~/miniconda/envs/test/lib/python3.8/site-packages/tornado/gen.py in run(self) 734 try: --> 735 value = future.result() 736 except Exception: ~/miniconda/envs/test/lib/python3.8/site-packages/distributed/client.py in _gather(self, futures, errors, direct, local_worker) 1846 else: -> 1847 raise exception.with_traceback(traceback) 1848 raise exc ~/miniconda/envs/test/lib/python3.8/site-packages/dask_ml/model_selection/methods.py in cv_extract() 165 def cv_extract(cvs, X, y, is_X, is_train, n): --> 166 return cvs.extract(X, y, n, is_X, is_train) 167 ~/miniconda/envs/test/lib/python3.8/site-packages/dask_ml/model_selection/methods.py in extract() 110 return self._extract_pairwise(X, y, n, is_train=is_train) --> 111 return self._extract(X, y, n, is_x=True, is_train=is_train) 112 if y is None: ~/miniconda/envs/test/lib/python3.8/site-packages/dask_ml/model_selection/methods.py in _extract() 130 inds = self.splits[n][0] if is_train else self.splits[n][1] --> 131 result = _safe_indexing(X if is_x else y, inds) 132 ~/miniconda/envs/test/lib/python3.8/site-packages/dask_ml/model_selection/utils.py in _safe_indexing() 219 elif hasattr(X, "shape"): --> 220 return _array_indexing(X, indices, indices_dtype, axis=axis) 221 else: ~/miniconda/envs/test/lib/python3.8/site-packages/dask_ml/model_selection/utils.py in _array_indexing() 298 """Index an array or scipy.sparse consistently across NumPy version.""" --> 299 if np_version < (1, 12) or sp.issparse(array): 300 # FIXME: Remove the check for NumPy when using >= 1.12 TypeError: '<' not supported between instances of 'Version' and 'tuple' During handling of the above exception, another exception occurred: RuntimeError Traceback (most recent call last)