Goto

Collaborating Authors

 Deep Learning


U of T prof's AI startup, Deep Genomics, raises US$180 million: The Globe and Mail

#artificialintelligence

Deep Genomics, an artificial intelligence startup founded by the University of Toronto's Brendan Frey, has secured US$180 million from investors, including Japanese multinational Softbank and Canada Pension Plan Investments, the Globe and Mail reported. Launched in 2015, the startup uses machine learning to develop treatments for genetic diseases. According to the Globe and Mail, Deep Genomics currently has 10 drugs in pre-clinical development, four of which are set to enter human trials by mid-2023. It is also working with San Francisco Bay-area biopharmaceutical company BioMarin Pharmaceutical Inc. to identify drug candidates for rare diseases. "These are all new chemical entities that would not exist" without Deep Genomics' technology," Frey, who is CEO of Deep Genomics and a professor in U of T's Faculty of Applied Science & Engineering, told the Globe.


The Rise of the Transformers: Explaining the Tech Underlying GPT-3

#artificialintelligence

The capabilities of GPT -3 has led to a debate between some as to whether or not GPT-3 and its underlying architecture will enable Artificial General Intelligence (AGI) in the future against those (many being from the school of logic and symbolic AI) who believe that without some form of logic there can be no AGI. The truth of the matter is that we don't know as we don't really fully understand the human brain. With science and engineering we work upon the basis of observation and testing. This section also addresses points raised by Esaรบ Flores. Gary Grossman in an article entitled Are we entering the AI Twilight Zone between AI and AGI? observed that in February 2020, Geoffrey Hinton, the University of Toronto professor who is a pioneer of Deep Learning, noted: "There are one trillion synapses in a cubic centimeter of the brain. If there is such a thing as general AI, [the system] would probably require one trillion synapses." The human brain has a huge number of synapses. Each of the 1011 (one hundred billion) neurons has on average 7,000 synaptic connections (synapses) to other neurons. It has been estimated that the brain of a three-year-old child has about 1015 synapses (1 quadrillion).


OpenAI releases Triton, a programming language for AI workload optimization

#artificialintelligence

All the sessions from Transform 2021 are available on-demand now. OpenAI today released Triton, an open source, Python-like programming language that enables researchers to write highly efficient GPU code for AI workloads. Triton makes it possible to reach peak hardware performance with relatively little effort, OpenAI claims, producing code on par with what an expert could achieve in as few as 25 lines. Deep neural networks have emerged as an important type of AI model, capable of achieving state-of-the-art performance across natural language processing, computer vision, and other domains. The strength of these models lies in their hierarchical structure, which generates a large amount of highly parallelizable work well-suited for multicore hardware like GPUs.


Best Deep Learning Courses

#artificialintelligence

If you want to become an expert in machine learning, you must also learn deep learning. There are many paid and free courses on the internet that can give you a comprehensive knowledge of the concepts of deep learning. So, if you want to know about the best deep learning courses, this article is for you. In this article, I'm going to introduce you to some of the best deep learning courses you can choose for learning deep learning. I found and selected two deep learning courses on the Internet.


How to Optimize a Deep Learning Model

#artificialintelligence

Hyperparameter optimization is a critical part of deep learning. Just selecting a model is not enough to achieve exceptional performance. You also need to tune your model.


Deep learning could help visualise X-ray data in 3D

#artificialintelligence

Machine learning can make full use and go beyond what is currently possible," said Mathew Cherukara at Argonne.


Blue Hexagon Recognized by CRN - "The 10 Hottest AI Security Companies You Need to Know"

#artificialintelligence

WIRE)--Blue Hexagon, a leading agentless cloud-native AI platform, today announces CRN's recognition of Blue Hexagon in the "10 Hottest AI Security Companies You Need to Know." This acknowledgment signifies the work Blue Hexagon has devoted to active and continuous AI-driven cloud security and network threat detection and response (NDR). As the leading cloud security platform, for actionable visibility, real-time threat defense and continuous compliance, this underscores Blue Hexagon's commitment to delivering innovative solutions to customers who need to secure their data, network and workloads in the public cloud. Blue Hexagon's deep learning models automatically analyze millions of traits within payloads, protocols, and headers to identify a wide variety of known and unknown file-based and protocol-based threats, in less than a second. The company's technology can analyze cloud configurations, cloud storage activity, and the entire threat kill chain in real time, without the burden of deploying and managing agents.


Facebook Fellow Spotlight: Shaping the future with neural program synthesis and adversarial ML - Facebook Research

#artificialintelligence

Each year, PhD students from around the world apply for the Facebook Fellowship, a program designed to encourage and support promising doctoral students who are engaged in innovative and relevant research in areas related to computer science and engineering. Fellowship recipients receive tuition funding for up to two years to conduct their research at their respective universities, independently of Facebook. To learn about award details, eligibility, and more, visit the program page below. Xinyun is a PhD student at UC Berkeley working with Professor Dawn Song and is expected to graduate in 2022. Her research explores the intersection of deep learning, programming languages, and security, focused on neural program synthesis and adversarial machine learning (ML).


Vision Transformers: Natural Language Processing (NLP) Increases Efficiency and Model Generality

#artificialintelligence

There has been no shortage of developments vying for a share of your attention over the last year or so. However, if you regularly follow the state of machine learning research you may recall a loud contender for a share of your mind in OpenAI's GPT-3 and accompanying business strategy development from the group. GPT-3 is the latest and by far the largest in OpenAI's general purpose transformer lineage working on models for natural language processing. Of course, GPT-3 and GPTs may grab headlines, but it belongs to a much larger superfamily of transformer models, including a plethora of variants based on the Bidirectional Encoder Representations from Transformers (BERT) family originally created by Google, as well as other smaller families of models from Facebook and Microsoft. For an expansive but still not exhaustive overview of major NLP transformers, the leading resource is probably the Apache 2.0 licensed Hugging Face () library.


How To: Create a Streaming Data Loader for PyTorch -- Visual Studio Magazine

#artificialintelligence

When training data won't fit into machine memory, a streaming data loader using an internal memory buffer can help. Dr. James McCaffrey shows how, with full code samples. When using the PyTorch neural network library to create a machine learning prediction model, you must prepare the training data and write code to serve up the data in batches. In situations where the training data is too large to fit into machine memory, one approach is to write a data loader that streams the data using an internal memory buffer. This article shows you how to create a streaming data loader for large training data files.