ahmadouna commited on
Commit
059661d
1 Parent(s): 2d0e3a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,10 +2,10 @@ import streamlit as st
2
  import pandas as pd
3
  from transformers import pipeline
4
 
5
- # Load the Comments.csv file
6
  df = pd.read_csv("Comments.csv")
7
 
8
- # Get the comments from the DataFrame
9
  comments = df["comment"].tolist()
10
 
11
  # Create a selectbox to choose a comment
 
2
  import pandas as pd
3
  from transformers import pipeline
4
 
5
+ # Chargement du dataframe
6
  df = pd.read_csv("Comments.csv")
7
 
8
+ #recup des comments en liste
9
  comments = df["comment"].tolist()
10
 
11
  # Create a selectbox to choose a comment