File tree 1 file changed +2
-2
lines changed
temp/customer_churn_ai_ml
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def summarize_ticket(ticket_text):
58
58
59
59
df ['ticket_summary' ] = df ['ticket_notes' ].apply (summarize_ticket )
60
60
61
- df .to_csv ("temp/customer_churn_ai_ml/data/customer_churn_summary.csv" , index = False )
61
+ # df.to_csv("temp/customer_churn_ai_ml/data/customer_churn_summary.csv", index=False)
62
62
63
63
df = pd .read_csv ("temp/customer_churn_ai_ml/data/customer_churn_summary.csv" )
64
64
df
@@ -80,7 +80,7 @@ def get_embeddings(text):
80
80
81
81
df ['summary_embedding' ] = df ['ticket_summary' ].apply (get_embeddings )
82
82
83
- df .to_csv ("temp/customer_churn_ai_ml/data/customer_churn_summary_embeddings.csv" , index = False )
83
+ # df.to_csv("temp/customer_churn_ai_ml/data/customer_churn_summary_embeddings.csv", index=False)
84
84
85
85
df = pd .read_csv ("temp/customer_churn_ai_ml/data/customer_churn_summary_embeddings.csv" )
86
86
You can’t perform that action at this time.
0 commit comments