Spaces:
Sleeping
Sleeping
File size: 394 Bytes
6f4f21f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import pandas as pd
import numpy as np
from data_utils.data_simulation import UpliftSimulationReady
class FISimulationReady:
def __init__(self, files_path):
self.files_path = files_path
def load_feature_importance(self, file_name):
uplift_simulation = UpliftSimulationReady(self.files_path)
df = uplift_simulation.load_uplift_data(file_name)
return df |