Maybe a quickest way using reg expression:
df1 = df1.copy
df1[["SVR", "RBF"]] = df1["SVR RBF"].str.extract(r'\(([^,]+), ([^)]+)\)').astype(float)