# Loading a Model ## Load Data & Model Assume you have trained a model and stored it under `demonstration_model`. We can now load the model and use it to make predictions using *left* and *right* DataFrames. In the first step, both the model and the data are loaded into memory. ``` python import pandas as pd from neer_match_utilities.model import Model from neer_match_utilities.prepare import Prepare, similarity_map_to_dict from pathlib import Path # Load files left = pd.read_csv('left.csv') right = pd.read_csv('right.csv') # Load model loaded_model = Model.load( 'demonstration_model' ) ``` ## Harmonize Format Next, we must ensure that the formatting logic remains consistent with that applied before training. Note that it is not necessary to redefine the similarity map, as it was stored and is loaded along with the model. ``` python prepare = Prepare( similarity_map=similarity_map_to_dict( loaded_model.similarity_map ), df_left=left, df_right=right, id_left='company_id', id_right='company_id' ) left, right = prepare.format( fill_numeric_na=False, to_numeric=['found_year'], fill_string_na=True, capitalize=True ) ``` ## Make Suggestions Now we can make suggestions: ``` python # Make suggestions for the first observation in left suggestions = loaded_model.suggest( left[:1], right, count=10, verbose=0 ) suggestions ```