Created
March 30, 2021 13:58
-
-
Save krokrob/90e35dee7ed2b20852b099331510b369 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('Loading pandas...') | |
import pandas as pd | |
df = pd.DataFrame({'pandas':['OK']}) | |
df.shape | |
print('✅ pandas OK') | |
print('Loading Scikit-learn...') | |
from sklearn.decomposition import PCA | |
pca = PCA() | |
print('✅ Scikit-learn OK') | |
print('Loading TensorFlow...') | |
from tensorflow.keras import Sequential, layers | |
model = Sequential() | |
model.add(layers.Dense(10, input_dim=4, activation='relu')) | |
model.add(layers.Dense(1, activation='linear')) | |
model.summary() | |
print('✅ TensorFlow OK') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment