Goto

Collaborating Authors

 Deep Learning


3D U-Net Convolutional Neural Network for Detection and Segmentation of Intracranial Metastases

#artificialintelligence

"Just Accepted" papers have undergone full peer review and have been accepted for publication in Radiology: Artificial Intelligence. This article will undergo copyediting, layout, and proof review before it is published in its final version. Please note that during production of the final copyedited article, errors may be discovered which could affect the content. To develop and validate a neural network for automated detection and segmentation of intracranial metastases on stereotactic radiosurgery treatment planning brain MRIs. A total of 563 MRIs were performed among the patients were split into training (n 413), validation (n 50) and test (n 100) datasets.


Question Generation using Natural Language processing

#artificialintelligence

Auto generate assessments in edtech like MCQs, True/False, Fill-in-the-blanks etc using state-of-the-art NLP techniques. This course focuses on using state-of-the-art Natural Language processing techniques to solve the problem of question generation in edtech. If we pick up any middle school textbook, at the end of every chapter we see assessment questions like MCQs, True/False questions, Fill-in-the-blanks, Match the following, etc. In this course, we will see how we can take any text content and generate these assessment questions using NLP techniques. This course will be a very practical use case of NLP where we put basic algorithms like word vectors (word2vec, Glove, etc) to recent advancements like BERT, openAI GPT-2, and T5 transformers to real-world use.


Deep Learning was Top In-demand Skill of 2020, List of Most Popular Nanodegree Programs

#artificialintelligence

Udacity has released the list of the most popular Nanodegree programs in India in 2020. The data is based on the number of enrollments during the year, showing the demand across different states and union territories. Deep learning and data engineering were the top Nanodegree programs showing the country's growing interest towards artificial intelligence and data. While deep learning is driving advances in artificial intelligence that are changing our world, data engineering is the foundation for the new world of Big Data. There is no doubt about the fact that COVID-19 has changed the global job landscape, said a statement from the company.


Combating Overfitting in Deep Learning

#artificialintelligence

Overfitting is the reference name given to the situation where your machine learning model performs well on the training data but totally sucks on the validation data. Simply, when a Machine Learning…


Deep Learning on Amazon Web Services (AWS)

#artificialintelligence

Deep learning is another machine learning paradigm from which one can derive solutions to data problems. "Modeled loosely on the human brain, a neural net consists of thousands or even millions of simple processing nodes that are densely interconnected" (Hardesty, 2017). Each node holds a piece of data moved through connected dense layers. Just as with supervised learning, there is an input data that we provide to the algorithm with an expected output. The first layer in our neural network is our input layer, which accepts raw data such as a pixel in images (freeCodeCamp.org,


Intel works with Deci to speed up machine learning on its chips

#artificialintelligence

Intel today announced a strategic business and technology collaboration with Deci to optimize machine learning on the former's processors. Deci says that in the coming weeks, it will work with Intel to deploy "innovative AI technologies" to the companies' mutual customers. Machine learning deployments have historically been constrained by the size and speed of algorithms and the need for costly hardware. In fact, a report from MIT found that machine learning might be approaching computational limits. A separate Synced study estimated that the University of Washington's Grover fake news detection model cost $25,000 to train in about two weeks.


A Machine Learning Engineer's Tutorial to Transfer Learning for Multi-class Image Segmentation…

#artificialintelligence

Image semantic segmentation is one of the most significant areas of research and engineering in the computer vision domain. From segmenting pedestrians and cars for autonomous drive [1] to segmentation and localization of pathology in medical images [2], there are several use-cases of image segmentation. With the wide-spread use of deep learning models for end-to-end delivery for machine learning (ML) models, the U-net model has emerged as a scalable solution across autonomous drive and medical imaging use-cases [3–4]. However, most existing papers and methods implement binary classification tasks for detecting objects/regions of interest over the backgrounds [4]. In this hands-on tutorial we will review how to start from a binary semantic segmentation task and transfer the learning to suit multi-class image segmentation tasks.


[Full text] Deep Learning for Obstructive Sleep Apnea

#artificialintelligence

Purpose: This study evaluated a novel approach for diagnosis and classification of obstructive sleep apnea (OSA), called Obstructive Sleep Apnea Smart System (OSASS), using residual networks and single-channel nasal pressure airflow signals. Methods: Data were collected from the sleep center of the First Affiliated Hospital, Sun Yat-sen University, and the Integrative Department of Guangdong Province Traditional Chinese Medical Hospital. We developed a new model called the multi-resolution residual network (Mr-ResNet) based on a residual network to detect nasal pressure airflow signals recorded by polysomnography (PSG) automatically. The performance of the model was assessed by its sensitivity, specificity, accuracy, and F1-score. We built OSASS based on Mr-ResNet to estimate the apnea‒hypopnea index (AHI) and to classify the severity of OSA, and compared the agreement between OSASS output and the registered polysomnographic technologist (RPSGT) score, assessed by two technologists. Results: In the primary test set, the sensitivity, specificity, accuracy, and F1-score of Mr-ResNet were 90.8%, 90.5%, 91.2%, and 90.5%, respectively.


weecology/DeepForest-pytorch

#artificialintelligence

DeepForest is a python package for training and predicting individual tree crowns from airborne RGB imagery. DeepForest comes with a prebuilt model trained on data from the National Ecological Observatory Network. Users can extend this model by annotating and training custom models starting from the prebuilt model. The machine learning community is moving more towards pytorch, where many new models can be found. Tree detection is a central task in forest ecology and remote sensing.


Breaking CAPTCHA Using Machine Learning in 0.05 Seconds

#artificialintelligence

Everyone despises CAPTCHAs (humans, since bots do not have emotions) -- Those annoying images containing hard to read the text, which you have to type in before you can access or do "something" online. CAPTCHAs (Completely Automated Public Turing tests to tell Computers and Humans Apart) were developed to prevent automatized programs from being mischievous (filling out online forms, accessing restricted files, accessing a website an incredible amount of times, and others) on the world wide web, by verifying that the end-user is "human" and not a bot. Nevertheless, several attacks on CAPTCHAs have been proposed in the past, but none has been as accurate and fast as the machine learning algorithm presented by a group of researchers from Lancaster University, Northwest University, and Peking University showed below. One of the first known people to break CAPTCHAs was Adrian Rosebrock, who, in his book "Deep Learning for Computer Vision with Python," [4] Adrian goes through how he bypassed the CAPTCHA systems on the E-ZPass New York website using machine learning, where he used deep learning to train his model by downloading a large image dataset of CAPTCHA examples to break the CAPTCHA systems. The main difference between Adrian's solution and the solution from the research scientists from Lancaster, Northwest, and Peking is that the researchers did not need to download a large dataset of images to break the CAPTCHAs system, au contraire, they used the concept of a generative adversarial network (GAN) to create synthesized CAPTCHAs, along with a small dataset of real CAPTCHAs to create an extremely fast and accurate CAPTCHA solver.