Lightning-AI / dl-fundamentals

Deep Learning Fundamentals -- Code material and exercises
https://lightning.ai/pages/courses/deep-learning-fundamentals/
320 stars 149 forks source link

Class distribution is not printed (`local_dataset_utilities.py`) #101

Closed GegznaV closed 4 months ago

GegznaV commented 4 months ago

In local_dataset_utilities.py (e.g., Unit 8.2), the line of code:

np.bincount(df["label"].values)

should be changed into:

print(np.bincount(df["label"].values))

image

rasbt commented 4 months ago

Good catch, thanks, just updated that!