Skip to content

Commit 9009202

Browse files
authored
Update advanced-1.md
1 parent d82089d commit 9009202

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

advanced-1.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ print(merged_df.head())
109109
#### Using BeautifulSoup to scrape data from web pages for analysis.
110110
maybe usefull? [Python-XPath Tutorial](https://github.com/VolkanSah/Python-XPath-Tutorial) | [JavaScript-XPath Tutorial](https://github.com/VolkanSah/JavaScript-XPath-Tutorial)
111111

112+
Otherwise, live web scraping won’t run inside the sandbox.
113+
112114
```python
113115
import requests
114116
from bs4 import BeautifulSoup
@@ -138,6 +140,7 @@ for item in data:
138140
### Sentiment Analysis with TextBlob
139141

140142
#### Performing sentiment analysis on text data using TextBlob.
143+
Note: The Code Interpreter environment is limited in resources, so training large or GPU-heavy models may not be feasible. It’s mostly suitable for small datasets and quick tests.
141144

142145
```python
143146
from textblob import TextBlob
@@ -183,6 +186,8 @@ img_filtered.show()
183186

184187
#### Creating interactive widgets to enhance user interaction within Jupyter notebooks.
185188

189+
The interactive widgets only work inside Jupyter notebook environments. They do not render in the Code Interpreter UI or ChatGPT interface, so you won’t see GUI controls there.
190+
186191
```python
187192
import ipywidgets as widgets
188193
from IPython.display import display
@@ -226,9 +231,9 @@ Contributions are welcome! Please feel free to submit a pull request.
226231

227232

228233
### Credits
229-
- [Volkan Kücükbudak //NCF](https://gihub.com/volkansah)
234+
- [Volkan Kücükbudak //NCF](https://github.com/volkansah)
230235
- and OpenAI's ChatGPT4 with Code Interpreter for providing interactive coding assistance and insights & tipps.
231236
- Become a Sponsor: [Link to my sponsorship page](https://github.com/sponsors/volkansah)
232237
- :star: my projects: Starring projects on GitHub helps increase their visibility and can help others find my work.
233238
- Follow me: Stay updated with my latest projects and releases.
234-
- [Source of this resposerity](https://github.com/VolkanSah/The-Code-Interpreter-in-OpenAI-GPT/)
239+
- [Source of this repository](https://github.com/VolkanSah/The-Code-Interpreter-in-OpenAI-GPT/)

0 commit comments

Comments
 (0)