Human x AI | What Artificial Intelligence can it bring us soon?

in LeoFinance • 2 years ago

Welcome! What is this about?

Hey everyone 👋! Here I come to elaborate on a topic that I think will be very useful in everyone discussing its possibilities for the present or future. The topic we are going to talk about is Artificial Intelligence (AI). And let me say right now, that this is for a research project I'm doing at the university, and I need help from the public to get answers and your ideas, suggestions, hate, etc...


A little bit about AI.

Those who are already inside the area, already know perfectly well what it is but it also doesn't hurt to read the rest and correct me if in case I am wrong. So, since everyone sees AI as a "virtual brain", in actuality, the first sources/knowledge was not learned by itself as we humans learn. In fact, AI uses a vast large database of data and information and then makes certain combinations on what the user asked for and generating a single "information" appearing to be real and unique. But now, we are at a stage where AI is able to generate its own "information" and learn new knowledge from user "inputs" making it to learn even more from us and drop a bit of information coming from the external sources.

AI systems work by ingesting large amounts of labeled training data, analyzing the data for correlations and patterns, and using these patterns to make predictions about future states. In this way, a chatbot that is fed examples of text can learn to generate lifelike exchanges with people, or an image recognition tool can learn to identify and describe objects in images by reviewing millions of examples.

Source: TechTarget | What is artificial intelligence (AI)?

I won't go into too much detail because otherwise it would be a very long and time-consuming post and would end up losing a bit of interest. If you are really interested in learning more about this, there is a lot of information on internet about this and also we are entering the generation of the "robots" replacing us, is that what is really going to happen?


Copyright. Is this something that will be important?

This is a good question to put into practice, no? Well, as we have seen with a bit of information above about AI, how can we justify about copyrights being able to generate unique things with information or works collected by other humans?


What will Developers/Artists/Designers/Writers/(Etc...) say?

As we talked a bit about copyright, this is going to be something that this role will not like and they will always want to fight against it so as not to see their "years" of work in vain just because an IA managed to do similar to their work in "minutes" and sometimes it may end up being better and have other aspects that could have been improved, or not.

But will they (AI) be conscious of what they are doing? Will they know the meanings of things? Does it know the information they want to convey to humans?

The question of whether artificial intelligence can have consciousness is a complex and multifaceted one. While some researchers argue that AI may be capable of subjective experience and consciousness, others put forth arguments to suggest that machines are fundamentally incapable of having these experiences.

Source: DataEconomy | Exploring the mind in the machine

Some examples of Human vs AI:

Here's an excerpt from Luís Camões, in the first verse of Camões' Sonnet No. 89.
Original (Translated):

  • "Love is a fire that burns unseen,
    a wound that aches yet isn't felt,
    an always discontent contentment,
    a pain that rages without hurting."

ChatGPT v3.5 (Generated an text from that excerpt):

  • "Passion is a flame that burns unseen,
    a scar that throbs but cannot be seen,
    a constant dissatisfaction that lingers on,
    a tempest that rages without leaving a trace."

I used the famous Windows XP image and asked DALL-E (The same company as ChatGPT) to make variations on it in a more improved and realistic version of the original, and these were the results:
Original:

DALL-E v2:

  • https://labs.openai.com/s/79XuvPqTTXRigNGqR3TZXOqV

An example of code, which at the time I was making a Tetris-like inventory for my own FiveM server and ended up writing a quick example code (Yeah, I made this for you! 😜, I know I'm cool) to give you an idea how ChatGPT managed to do its optimization.

Original:

const itemIdToFind = 'item_id_to_search';

let foundBlock: InventoryBlock | undefined;

// Loop through each inventory in the array
inventories.some((inventory) => {
  // Loop through each block in the inventory
  return inventory.blocks.some((block) => {
    // Check if the block contains the item with the specified ID
    const foundItem = block.items.find((item) => item.id === itemIdToFind);
    if (foundItem) {
      foundBlock = block;
      return true; // Stop looping through the blocks
    }
  });
});

// foundBlock will be undefined if the item was not found in any block

ChatGPT v3.5 (Optimized code):

const itemIdToFind = 'item_id_to_search';

let foundBlock: InventoryBlock | undefined;

for (let i = 0; i < inventories.length; i++) {
  const inventory = inventories[i];
  for (let j = 0; j < inventory.blocks.length; j++) {
    const block = inventory.blocks[j];
    const foundItem = block.items.find((item) => item.id === itemIdToFind);
    if (foundItem) {
      foundBlock = block;
      break;
    }
  }
  if (foundBlock) {
    break;
  }
}

// foundBlock will be undefined if the item was not found in any block

And what about rules or laws?

Knowing that in the future there will be an AI for the good and another one for the bad. Will we humans ever be able to enforce rules? laws? Or will AI among them be able to communicate simultaneously and make their own rules/laws?


Would it be useful if AI integrated into Hive or in other blockchains and cryptocurrencies?

With a bit of information that has been written in those topics, we can get an idea of what AI might lead us to. Is this a good idea? For example, AI could increase the speed and decrease the margin of error in transaction validations, be able to evaluate if posted projects have a tendency to be "scam" with the assistance of putting together a "profile" and the information based on that and list us a record of your name, brand, etc...


Will AI replace us?

It's a good question for everyone, don't you agree with me? Will it really replace us? As we see this technology is always evolving and is already capable of generating texts, ideas, music, videos, images, code, corrections, solving calculations, thesis for universities, essay, etc... And as we can see recently, we've started to integrate more with this AI world, and in fact some jobs are slowly disappearing but at the same time a new job has appeared that never existed before, which is the one, "Prompt Engineer". What are your thoughts about all this? Are you in favor or against?


That's all...

I'll end here, it's already getting a bit long the post and I want something that is engaging and not boring. I hope I was able to give you some ideas or even answers of what IA might bring us for the future. Thank you to everyone who has read so far and I look forward to your responses.

Posted Using LeoFinance Beta