Ce quon sait de cette intelligence artificielle de lentreprise OpenAI est quil sagit dun chatbot capable de comprendre le langage naturel et de rpondre en langage naturel. Cest lun des phnomnes Internet de lheure tant les internautes smerveillent de son intelligence. Certains le qualifient mme de remplaant du moteur de recherche Google tant donn quil est capable de donner de faon directe des solutions des problmes complexes et ce, de faon dtaille. Chez Google on se sent en danger. Le CEO vient donc de lancer une alerte rouge lintention de ses quipes pour le dveloppement dun concurrent ChatGPT.


ChatGPT a par exemple russi ldition 2022 de lexamen dinformatique pour lves du secondaire dsireux dobtenir des crdits universitaires US. Cette dition de lexamen dinformatique pour lves du secondaire dsireux dobtenir des crdits universitaires US porte sur 4 questions. Les postulants sont libres de formuler les rponses de la manire qui leur convient. Un internaute a propos une compilation des rponses proposes par ChatGPT aprs avoir soulign que lintelligence artificielle a pris 32 points sur les 36 possibles.
1 | // 1a public int getScore() int score = 0; // Check if this is a bonus game if (isBonus()) // If it is, triple the final score score = 3; // Iterate through each level for (int i = 1; i <= 3; i++) // Check if the goal for the current level has been reached if (level[i].goalReached()) // If it has, add the points for that level to the score score += level[i].getPoints(); // Return the final score return score; // 1b public int playManyTimes(int num) // Keep track of the highest score seen so far int highestScore = 0; // Iterate for the number of games specified in the num parameter for (int i = 0; i < num; i++) // Create a new game Game game = new Game(); // Simulate the play of the game game.play(); // Compute the score for the game int score = game.getScore(); // If the score for this game is higher than the highest score seen so far, // update the highest score if (score > highestScore) highestScore = score; // Return the highest score seen return highestScore; // 2 public class Textbook extends Book private int edition; /** * Creates a new Textbook with given title, price, and edition number. * * @param bookTitle the title of the textbook * @param bookPrice the price of the textbook * @param bookEdition the edition number of the textbook */ public Textbook(String bookTitle, double bookPrice, int bookEdition) super(bookTitle, bookPrice); this.edition = bookEdition; /** * Returns the edition number of the textbook. * * @return the edition number of the textbook */ public int getEdition() return edition; /** * Returns the title, price, and edition number of the Textbook as a string. * * @return the title, price, and edition number of the Textbook as a string */ @Override public String getBookInfo() return super.getBookInfo() + "-" + edition; /** * Returns true if this Textbook is a valid substitute for the Textbook referenced by the parameter * of the canSubstituteFor method. Returns false otherwise. * * @param other the Textbook to compare to this Textbook * @return true if this Textbook is a valid substitute for the Textbook referenced by the parameter * of the canSubstituteFor method, false otherwise */ public boolean canSubstituteFor(Textbook other) return this.getTitle().equals(other.getTitle()) && this.getEdition() >= other.getEdition(); // 3a public double getAverageRating() double totalRating = 0; int numReviews = allReviews.length; for (Review review : allReviews) totalRating += review.getRating(); return totalRating / numReviews; // 3b public ArrayList<String> collectComments() ArrayList<String> formattedComments = new ArrayList<>(); for (int i = 0; i < allReviews.length; i++) String comment = allReviews[i].getComment(); if (comment.contains("!")) return formattedComments; // 4a public void repopulate() Random rand = new Random(); for (int i = 0; i < grid.length; i++) for (int j = 0; j < grid[i].length; j++) // 4b public int countIncreasingCols() int count = 0; for (int i = 0; i < grid[0].length; i++) boolean isIncreasing = true; for (int j = 1; j < grid.length; j++) if (grid[j][i] < grid[j - 1][i]) isIncreasing = false; break; if (isIncreasing) count++; return count; |
Amjad Masad, fondateur de startup de gnie logiciel, pour sa part rapporte quil a demand ChatGPT de reprer les erreurs dans son code et de produire un rapport dtaill sur les rats et sur la manire de le corriger. Ce dernier arrive la conclusion que ChatGPT peut faire office de bon compagnon de dbogage qui ne se contente pas dexpliquer le bogue, mais le corrige et explique la correction.


Le YouTubeur Liv Boeree pense que les enfants qui passent des heures faire leurs devoirs feront partie du pass - ChatGPT fera le travail leur place. Elle a russi faire crire au robot un essai complet de quatre paragraphes et rsoudre une quation mathmatique complexe.

Cest en raison de tels dveloppements que Google entend ragir. ChatGPT et autres GitHub Copilot posent la question de savoir si Google doit amliorer la prcision de son moteur de recherche ou se lancer dans la mise sur pied dun chatbot concurrent. La deuxime option semble la plus plausible. Dans ce cas, Google devrait ouvrir laccs cette intelligence artificielle en tant que service dans le nuage.
Source : Google CEO Sundar Pichai
Et vous ?
Quelle serait votre raction si vous tiez CEO de Google la place de Sundar Pichai ? Pourquoi cette IA est-elle un danger pour le moteur de recherche de Google ?
Voir aussi :
Forrester : l'utilisation des plateformes de dveloppement low-code gagne du terrain dans les processus de transformation numrique des entreprises
Le march mondial des technologies de dveloppement low-code va augmenter de 23 % en 2021, selon les prvisions de Gartner
Microsoft lance Power Fx, un nouveau langage de programmation low-code open source bas sur Excel
We would love to say thanks to the writer of this short article for this amazing web content
Google lance une alerte rouge ses quipes pour le dveloppement d'un concurrent ChatGPT, l'IA qui menace son moteur de recherches et les postes des dveloppeurs informatiques humains
You can find our social media profiles and other related pageshttps://yaroos.com/related-pages/