# as first layer in a sequential model: model = Sequential() model.add(Dense(32, input_shape=(16,))) # now the model will take as input arrays of shape (*, 16) # and output arrays of shape (*, 32) # after the first layer, you don't need to specify # the size of the input anymore: model.add(Dense(32))
import pandas as pd
df_input = pd.read_csv('input.csv')
df_addresses = pd.read_csv('address.csv', columns=['index', 'address'])
df = pd.merge(df_input, df_addresses, on='index', how='outer')