이혜연

Reupdate README.md

...@@ -34,19 +34,7 @@ In order to run these scripts, you'll need the following libraries. ...@@ -34,19 +34,7 @@ In order to run these scripts, you'll need the following libraries.
34 ``` 34 ```
35 3. Our first job is to download all of your conversation data from various social media sites. For me, I used Facebook, Google Hangouts, and LinkedIn. If you have other sites that you're getting data from, that's fine. You just will have to create a new method in [createDataset.py](https://github.com/adeshpande3/Facebook-Messenger-Bot/blob/master/createDataset.py). 35 3. Our first job is to download all of your conversation data from various social media sites. For me, I used Facebook, Google Hangouts, and LinkedIn. If you have other sites that you're getting data from, that's fine. You just will have to create a new method in [createDataset.py](https://github.com/adeshpande3/Facebook-Messenger-Bot/blob/master/createDataset.py).
36 36
37 -* **Facebook Data**: Download your data from [here](https://www.facebook.com/help/131112897028467). Once downloaded, you should have a fairly large file called **messages.htm**. It'll be a pretty large file (over 190 MB for me). We're going to need to parse through this large file, and extract all of the conversations. To do this, we'll use this [tool](https://github.com/ownaginatious/fbchat-archive-parser) that Dillon Dixon has kindly open sourced. You'll go ahead and install that tool by running 37 + **KaKaotalk Data**: Tap the More section of the KakaoTalk window you want to analyze and enter the settings. After that, you can send the KakaoTalk chat file to the designated email by clicking the Export chat details button, and enter all the text in your log file.
38 - ```bash
39 - pip install fbchat-archive-parser
40 - ```
41 - and then running:
42 - ```bash
43 - fbcap ./messages.htm > fbMessages.txt
44 - ```
45 - This will give you all your Facebook conversations in a fairly unified text file. Thanks Dillon! Go ahead and then store that file in your Facebook-Messenger-Bot folder.
46 -
47 -* **KaKaotalk Data**: Tap the More section of the KakaoTalk window you want to analyze and enter the settings.
48 -* After that, you can send the KakaoTalk chat file to the designated email by clicking the Export chat details
49 -* button, and enter all the text in your log file.
50 38
51 4. Now that we have all our conversation logs in a clean format, we can go ahead and create our dataset. In our directory, let's run: 39 4. Now that we have all our conversation logs in a clean format, we can go ahead and create our dataset. In our directory, let's run:
52 ```bash 40 ```bash
......