Skip to content
#

Data Science

Data science is an inter-disciplinary field that uses scientific methods, processes, algorithms, and systems to extract knowledge from structured and unstructured data. Data scientists perform data analysis and preparation, and their findings inform high-level decisions in many organizations.

Here are 24,405 public repositories matching this topic...

adrinjalali
adrinjalali commented Nov 8, 2021

These examples take quite a long time to run, and they make our documentation CI fail quite frequently due to timeout. It'd be nice to speed the up a little bit.

To contributors: if you want to work on an example, first have a look at the example, and if you think you're comfortable working on it and have found a potential way to speed-up execution time while preserving the educational message

superset
chris-befoul
chris-befoul commented Jan 26, 2022

Latest Version of Apache Superset from docker image.

When the feature flag SQLLAB_BACKEND_PERSISTENCE is set to true in SQL lab upon selecting a schema receiving superset error trouble finding schema.

And seeing this error in logs upon trying to select schema:
404 Not Found: The requested URL was not found on the server. If you entered the URL manually please check your spelling and tr

Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.

  • Updated Nov 4, 2021
  • Python
pytorch-lightning
rasbt
rasbt commented Jan 26, 2022

📚 Documentation

On the following page (On the following page (https://pytorch-lightning.readthedocs.io/en/latest/extensions/datamodules.html#predict-dataloader) I stumbled upon the predict_dataloader() method.

Should we reference is as an option in the LightningDataModule method doc?
I.e., currently it has the section

https://github.com/PyTorchLightning/pytorch-lightning/blob/b3c

dash
tirkarthi
tirkarthi commented Jan 12, 2022

Python 3.10 added suggestions for AttributeError and NameError in the error messages. It seems the suggestions are not stored in the exception object but calculated when Error is displayed. There is a note that that this won't work with IPython but it will be good to see if it's feasible. Opening an issue for discussion.

https://bugs.python.org/issue38530
https://docs.python.org/3/whatsnew/3.

jklymak
jklymak commented Jan 4, 2022

Bug summary

imshow extents cannot be expressed with units.

Code for reproduction

fig, ax = plt.subplots()
dates = np.arange("2020-01-01","2020-01-10 23:00", dtype='datetime64[h]')
ys = np.random.random(dates.size)
arr = np.random.random((10, 10))

ax.imshow(arr, extent=[dates[0], dates[1], 0, 10])

Actual outcome

Traceback (most recent call last):
  File "
gensim
AnirudhDagar
AnirudhDagar commented Jan 24, 2022

Although the results look nice and ideal in all TensorFlow plots and are consistent across all frameworks, there is a small difference (more of a consistency issue). The result training loss/accuracy plots look like they are sampling on a lesser number of points. It looks more straight and smooth and less wiggly as compared to PyTorch or MXNet.

It can be clearly seen in chapter 6([CNN Lenet](ht

nni
danieldeutsch
danieldeutsch commented Jun 2, 2021

Is your feature request related to a problem? Please describe.
I typically used compressed datasets (e.g. gzipped) to save disk space. This works fine with AllenNLP during training because I can write my dataset reader to load the compressed data. However, the predict command opens the file and reads lines for the Predictor. This fails when it tries to load data from my compressed files.