Skip to main content

IndiaAI Fellowship

IndiaAI Fellowship under the IndiaAI Mission

IndiaAI Fellowship under the IndiaAI Mission

IndiaAI Fellowship

In 2024, under the FutureSkills pillar of the IndiaAI Mission, fellowships were extended to students from top engineering institutions across India, with a focus on those pursuing artificial intelligence (AI) projects. This initiative aimed to bridge the gap between theoretical knowledge and practical application, ensuring a workforce adept in essential AI skills.

The first round of the IndiaAI Fellowship saw groundbreaking project submissions from students, highlighting AI's transformative potential in addressing real-world issues. Participants delved into applications across various fields including Agriculture, AI Ethics, Education, Finance, Fundamental Research, Language Translation, Manufacturing, Medical advancements, Computer Vision, Human Safety, and other emerging AI areas.

As of the end of December, the first tranche of fellowships has been awarded to 130 B.Tech and 40 M.Tech students, with the remaining applications still under review.

The nominated projects in the first round addressed critical societal, industrial, and environmental challenges through diverse AI applications. Notable project titles include ‘Enhancing Biometric Accuracy by Preventing False Positives with High-Resolution Images,’ ‘Enhancing Vehicle Safety on Non-Favorable Roads: An AI-Driven Driver Assistance System with Dash Cameras,’ ‘Smart Firefighting System Using Computer Vision,’ and ‘Monocular 3D Pedestrian Detection Using Transformers.’

Details of the selected projects can be found here.

Participating Institutions

  • Aligarh Muslim University
  • Amity University
  • Chandigarh University
  • Defence Institute of Advanced Technology
  • Dr. B R Ambedkar National Institute of Technology, Jalandhar
  • Guru Gobind Singh Indraprastha University
  • Indian Institute of Engineering Science and Technology, Shibpur
  • Indian Institute of Space Science and Technology
  • Indian Institute of Technology (Banaras Hindu University) Varanasi
  • Indian Institute of Technology (Indian School of Mines)
  • Indian Institute of Technology Gandhinagar
  • Indian Institute of Technology Guwahati
  • Indian Institute of Technology Hyderabad
  • Indian Institute of Technology Kanpur
  • Indian Institute of Technology Kharagpur
  • Indian Institute of Technology Madras
  • Indian Institute of Technology Roorkee
  • Indian Institute of Technology Ropar
  • Kalasalingam Academy of Research and Education
  • National Institute of Technology Calicut
  • National Institute of Technology Karnataka, Surathkal
  • National Institute of Technology Tiruchirappalli
  • S.R.M. Institute of Science and Technology
  • Sri Sivasubramaniya Nadar College of Engineering
  • Visvesvaraya Technological University

Second Round of IndiaAI Fellowships

IndiaAI is preparing for the second round of the IndiaAI fellowship for undergraduate and postgraduate students engaged in innovative AI projects.

Comments

Popular posts from this blog

Unraveling Directed Acyclic Graphs (DAGs): A Blueprint for Scalable Software Architecture

  A Directed Acyclic Graph (DAG) in the context of software architecture is a structural design pattern where components or tasks are represented as nodes, and their dependencies are represented as directed edges between these nodes. The term "acyclic" ensures that there are no cycles in the graph, meaning you cannot start from a node and follow a path that loops back to it. Here’s how DAGs are applied and interpreted in software architecture: Key Characteristics: Directed : Each edge has a direction, indicating the flow of dependency or control from one component to another. For example, if there is an edge from A A to B B , A A depends on B B or B B must complete before A A starts. Acyclic : There are no circular dependencies. This ensures that the system or process can be executed in a linear or hierarchical order. Hierarchical/Layered Structure : A DAG often implies a hierarchy or a layered design, where higher-level components depend on lower-l...

Mastering the Single Responsibility Principle: Simplify Code, Boost Efficiency

Title: Mastering the Single Responsibility Principle: Simplify Code, Boost Efficiency The Single Responsibility Principle (SRP) is a cornerstone of software development, forming part of the SOLID principles. At its core, SRP states: "A class should have only one reason to change." This means that a class should focus on one responsibility or functionality, ensuring that it does not handle multiple concerns. By following SRP, developers create modular, maintainable, and scalable code. Let’s explore this concept in more detail. Why is SRP Important? Maintainability: When each class has a single responsibility, understanding and modifying code becomes easier. Reusability: Single-responsibility classes can be reused across different projects or modules without unnecessary dependencies. Testability: Focused classes are easier to test, as they have limited scope. Avoiding Coupling: SRP reduces interdependencies, making the code more robust and less prone to cascading...

25 AI Tools Transforming Technology in 2024: The Future Is Now

Artificial Intelligence (AI) has evolved from a buzzword to an integral part of modern technological advancement. From enhancing productivity to revolutionizing industries, AI is at the forefront of innovation. In 2024, a new wave of AI tools is transforming how businesses, creators, and developers interact with technology. In this blog, we’ll explore 25 cutting-edge AI tools that are reshaping the landscape of industries, from healthcare to education, and beyond. 1. ChatGPT (OpenAI) As one of the most well-known AI tools, ChatGPT has become a game-changer in conversational AI. Whether it’s customer support, content generation, or coding assistance, ChatGPT delivers human-like interaction that boosts productivity and creativity.  2. DALL·E 3 (OpenAI) DALL·E 3 is an AI-powered tool for generating images from text prompts. Artists, designers, and content creators use it to bring their visions to life in minutes, revolutionizing the creative industry. 3. Jasper Jasper is a po...