machine-learning-articles icon indicating copy to clipboard operation
machine-learning-articles copied to clipboard

Useful setups to include at the beginning of a data science project

Open khuyentran1401 opened this issue 4 years ago • 0 comments

TL;DR

Some methods to include to make sure Jupyter Notebook run smoothly

Article Link

https://towardsdatascience.com/7-setups-you-should-include-at-the-beginning-of-a-data-science-project-8232ab10a1ec

Useful Code Snippets

# Ensure package version
import tensorflow as tf
assert tf.__version__ >= "2.0"
# Ouput multiple results in one cell
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"


khuyentran1401 avatar Jul 24 '20 13:07 khuyentran1401