Data Analytics & AI | SQL Interviews | Power BI Resources
25.2K subscribers
305 photos
2 videos
151 files
317 links
🔓Explore the fascinating world of Data Analytics & Artificial Intelligence

💻 Best AI tools, free resources, and expert advice to land your dream tech job.

Admin: @coderfun
Download Telegram
Bill Gates warns young people of four major global threats, including AI

In a recent interview, Bill Gates warned young people about four major global threats: climate change, bioterrorism or pandemics, the risk of nuclear war, and unchecked artificial intelligence (AI). While he acknowledges that concerns about nuclear war persist, he emphasizes that younger generations must also contend with the potential dangers of advanced AI, which could outsmart humans and pose existential risks. Gates is not against AI; he believes it can be beneficial, particularly in addressing skill shortages.

Despite these threats, he remains optimistic about the future, predicting advancements in healthcare and innovation that could significantly improve global conditions. Gates encourages the younger generation to take action to mitigate these risks.
How do you start AI and ML ?

Where do you go to learn these skills? What courses are the best?

There’s no best answer🥺. Everyone’s path will be different. Some people learn better with books, others learn better through videos.

What’s more important than how you start is why you start.

Start with why.

Why do you want to learn these skills?
Do you want to make money?
Do you want to build things?
Do you want to make a difference?
Again, no right reason. All are valid in their own way.

Start with why because having a why is more important than how. Having a why means when it gets hard and it will get hard, you’ve got something to turn to. Something to remind you why you started.

Got a why? Good. Time for some hard skills.

I can only recommend what I’ve tried every week new course lauch better than others its difficult to recommend any course

You can completed courses from (in order):

Treehouse / youtube( free) - Introduction to Python

Udacity - Deep Learning & AI Nanodegree

fast.ai - Part 1and Part 2

They’re all world class. I’m a visual learner. I learn better seeing things being done/explained to me on. So all of these courses reflect that.

If you’re an absolute beginner, start with some introductory Python courses and when you’re a bit more confident, move into data science, machine learning and AI.

Join for more: https://t.iss.one/machinelearning_deeplearning

👉Telegram Link: https://t.iss.one/addlist/4q2PYC0pH_VjZDk5

Like for more ❤️

All the best 👍👍
👍4
Forwarded from Generative AI
Important Generative AI Terms
🔥2
How to be a Prompt Engineer 101

The shortest and most comprehensive guide

1. start with an explanation

Make a description and character situation at the beginning of the Prompt

Error example:

Please help me read the following code:

{your input here}

Correct example:

Now let's play the role, you are a senior information security engineer, I will give you a piece of code, please help me read the code and point out where there may be security vulnerable.



Text: """

{your input here}

"""


2. Prompt to describe the situation

In the prompt, it is necessary to describe the context, result, length, format and style as much as possible

Error example:

Write a short story for kids

Correct example:

Write a funny soccer story for kids that teaches the kid that persistence is the key for success in the style of Rowling.

3. gives output in the format

If you are doing data analysis, please give the input template of the format

Error example:

Extract house pricing data from the following text.

Text: """

{your text containing pricing data}

"""

Correct example:

Extract house pricing data from the following text.

Desired format: """

House 1 | $1,000,000 | 100 sqm

House 2 | $500,000 | 90 sqm

... (and so on)

"""

Text: """

{your text containing pricing data}

"""


4. Add some example questions and answers

Sometimes adding some question and answer examples can make GPT more intelligent

Correct example:

Extract brand names from the texts below.

Text 1: Finxter and YouTube are tech companies. Google is too.

Brand names 2: Finxter, YouTube, Google

###

Text 2: If you like tech, you'll love Finxter!

Brand names 2: Finxter

###

Text 3: {your text here}


Brand names 3:

The question and answer example is also a standard template example in fine-tune


5. Simplify the sentence and clarify the purpose


Keep your words as short as possible and don't say useless content


Error example:

ChatGPT, write a sales page for my company selling sand in the desert, please write only a few sentences, nothing long and complex

Correct example:

Write a 5-sentence sales page, sell sand in the desert.

6. Good at using introductory words

Error example:

Write a Python function that plots my net worth over 10 years for different inputs on the initial investment and a given ROI

Correct example:

# Python function that plots net worth over 10

# years for different inputs on the initial

# investment and a given ROI


import matplotlib


def plot_net_worth(initial, roi):
👍2