ChatGPT and Other AI Tools Are Taking Away Jobs?
- Get link
- X
- Other Apps
Is it possible that ChatGPT and Other AI Tools Are Taking Away Jobs? I have used ChatGPT to write Python scripts, practice SAP ABAP and create papers in Humanities. On its own ChatGPT (free-tier) is very powerful. I have been fortunate enough to get some quality output from ChatGPT. I was casting around to see some good articulation about ChatGPT and its usage. I think I have found one in:
Tweet
See new Tweets
Conversation
The next few weeks will be challenging.
You'll see many people claim the death of programming, data science, excel, data analysis, and every other discipline you can think of.
They are shitfluencers. Many of them were crypto experts a few months ago. Their best skill is to farm attention from uninformed bystanders. They have never written any code, done any data science, or built any of the skills they now claim as dead.
Ignore them.
They are looking to cash in on OpenAI's Code Interpreter. It's a new tool, and it's impressive. But it's just a tool. I spent the weekend playing with it, and while I plan to use it, I have to be clear: do not use Code Interpreter for anything serious if you can't supervise every bit it generates. It will improve tremendously over time, but delegating any work to it at this point is nuts.
And, of course, Code Interpreter is not replacing anybody. When I started programming in the early 90s, people thought it was stupid and that I should become a doctor or a lawyer, not a weird nerd. Years later, they told me somebody overseas would take my job for $2/hour. When that didn't happen, no-code solutions were coming after me, and now it's time for AI to replace me: Copilot, then ChatGPT, and finally, Code Interpreter.
The reality is very different. AI will not take away but create. For every low-skill job that AI renders obsolote, many more will open. The demand for programmers and data scientists has never been higher before and will continue raising. The attention farmers will eventually move on. There will be a day when selling "100+ ChatGPT prompts to make $1,000 per day" won't be profitable anymore. Until that day comes, ignore them and get to work. See @svpino
Here is my Python script on FIH Pro-League 2022-2023 Standings developed using ChatGPT with some minor modifications;
#Python script scrapes https://www.fih.hockey/events/fih-pro-league/standings-points-table
import pandas as pd
data = {
'Country': [
'Netherlands', 'Great Britain', 'Belgium', 'India', 'Spain',
'Germany', 'Australia', 'Argentina', 'New Zealand'
],
'Played': [16, 16, 16, 16, 16, 16, 16, 16, 16],
'Wins': [10, 8, 10, 8, 8, 6, 5, 3, 0],
'Draws': [4, 5, 0, 3, 3, 2, 3, 6, 2],
'SO-Bonus': [1, 3, 0, 3, 0, 2, 1, 3, 1],
'Losses': [2, 3, 6, 5, 5, 8, 8, 7, 14],
'GF': [46, 46, 42, 51, 37, 31, 41, 28, 26],
'GA': [31, 27, 37, 42, 40, 35, 40, 36, 60],
'GD': [15, 19, 5, 9, -3, -4, 1, -8, -34],
'Points': [35, 32, 30, 30, 27, 22, 19, 18, 3]
}
df = pd.DataFrame(data)
import plotly.graph_objects as go
# Sort the dataframe by 'Points' column in descending order
df_sorted = df.sort_values(by='Points', ascending=False)
fig = go.Figure()
fig.add_trace(go.Bar(
y=df_sorted['Country'],
x=df_sorted['Wins'],
text=df_sorted['Wins'],
name='Wins',
orientation='h',
textposition='auto'
))
fig.add_trace(go.Bar(
y=df_sorted['Country'],
x=df_sorted['Draws'],
text=df_sorted['Draws'],
name='Draws',
orientation='h',
textposition='auto'
))
fig.add_trace(go.Bar(
y=df_sorted['Country'],
x=df_sorted['Losses'],
text=df_sorted['Losses'],
name='Losses',
orientation='h',
textposition='auto'
))
fig.add_trace(go.Bar(
y=df_sorted['Country'],
x=df_sorted['Points'],
text=df_sorted['Points'],
name='Points',
orientation='h',
textposition='auto'
))
# Reverse the y-axis to start from the highest points
fig.update_layout(
title='Team Performance',
xaxis_title='Count',
yaxis_title='Country',
barmode='group',
yaxis=dict(autorange="reversed")
)
fig.show()
- Get link
- X
- Other Apps
Comments
Post a Comment