atlas news
    
Joe James : youtube
01  juin     21h37
Top 10 AI Stocks of 2023
   My Top Artificial Intelligence AI Stocks for . Most of them have already integrated AI into the company’s development and or products, while NVIDIA and AMD build the compute infrastructure. artificialintelligence
30  mai     20h54
C3 Generative AI Now on AWS Marketplace #artificialintelligence
   C AI’s new enterprise class generative AI solution is now available on the AWS Marketplace. C offers their AI engine either as a turn key application for enterprises or as a development platform that can be integrated into custom applications. Perhaps its biggest advantage over other generative...
    18h38
Self-Aware AI? Risks & Regulation of Artificial Intelligence
   How soon and how strictly should Artificial Intelligence technology be regulated Center for AI Safety published a letter calling for regulation, which has been signed by hundreds of AI Experts, https: www.safe.ai statement on ai risk open letter The EU has taken the lead on regulating AI with...
    00h39
10 Year Anniversary Shifting to AI Focus
   Thank you all for supporting my channel for the past years It’s aa huge milestone. My channel is now shifting focus to Artificial Intelligence. I hope to continue to bring my audience of techies, engineers and developers very useful and breaking news and information on AI as it transforms every...
26  mai     16h00
Generative AI What It Can Do What Are the Top APIs
   Generative Artificial Intelligence AI is revolutionizing content creation of all sorts, across many different industries. In addition to ChatGPT there are several other exciting Generative AI Platforms that offer large language model APIs to developers. Most of them also have sandboxes on their...
23  mai     19h32
Adobe Adds Firefly Generative AI to Photoshop
   More Deep Fakes for the world and less job security for artwork developers. However, by integrating their own Firefly generative AI engine into Photoshop Adobe hopes to dramatically boost power and efficiency of their popular image editing software. artificialintelligence firefly adobephotoshop
22  mai     16h12
ChatGPT Banned by Top Corporations
   Many major corporations have banned use of ChatGPT, citing concerns around privacy, security, data leakage, and accuracy of responses. chatgpt artificialintelligence
    16h00
AI APIs other than ChatGPT AI Developer’s Intro
   Open AI and ChatGPT get all the buzz, but there is a rich selection of Artificial Intelligence APIs for app developers covering all major fields of AI, including NLP, Speech, Translation, Vision, and Generative AI, that are specialized for building intelligent apps for chatbots, content moderation,...
20  mai     16h05
Chat GPT Meets iPhone
   New Chat GPT app from Open AI is now available on Apple App Store. I installed it on my iPhone and gave it a test run. It was incredibly easy to set up and get started. With a short prompt, the AI engine spewed out a very good story in seconds. However, it cannot create images. It is limited to...
16  mai     16h00
Python: Deep Copy vs Shallow Copy
   Learn the differences between shallow copy and deep copy in Python, and how to use various methods of copying Integers, lists and objects. python pythonprogramming Code: https: github.com joeyajames Python blob master deep copy.ipynb
11  mai     19h15
Python: Remove Items from List 3 ways - pop, del, remove
   There are ways to remove items from a list in Python: pop, del, and remove. This video explains the differences and when to use each method. Code: https: github.com joeyajames Python blob master remove from list.py python pythonprogramming pythontutorial
09  mai     18h22
Python Dictionary Comprehensions
   Comprehensions are a powerful tool in Python that allow you to create new lists, sets and dictionaries, populated with values. This video explains how Dict comprehensions work through code examples that include using lists, range function, and existing dicts, as well as if else conditions and...
02  mai     16h00
Python: Flatten Nested Lists Convert 2D 3D into 1D Lists
   Learn to flatten nested lists in python using two methods: a list comprehension, and a recursive method. Code: https: github.com joeyajames Python blob master flatten list.py
26  avril     16h35
Java: HashMaps Intro Tutorial
   This intro to HashMaps in Java explains how to create hash maps, add and remove items, iterate, edit, and everything else you need to know about this data structure. Sometimes called dictionaries, hash tables, or associative arrays, they are used for storing key value pairs with very quick lookup....
20  avril     16h00
Java: Split String at Delimiter break String into Array of Substrings
   This video explains how to split a string in Java into an array of substrings, at one or more delimiter characters such as space, period, or comma. Code: https: github.com joeyajames Java blob master SplitString.java java