An open API service indexing awesome lists of open source software.

https://github.com/blacksujit/deep-learning-specialization-repo

This repo contains the neural networks learning's with tensorflow with all the high level deep learning concepts i am learning with project implementation
https://github.com/blacksujit/deep-learning-specialization-repo

deep deep-layers deep-learning deep-neural-networks embeddings-word2vec llvm network-embeddings neural-network transformers-layers transformers-models vision-language-model

Last synced: 2 months ago
JSON representation

This repo contains the neural networks learning's with tensorflow with all the high level deep learning concepts i am learning with project implementation

Awesome Lists containing this project

README

        

# 🌟 Deep Learning Specialization Repository 🌟

Welcome to the **Deep Learning Specialization Repository**! 🚀 This repository is designed to help you dive deep into neural networks, understand core concepts, and explore hands-on deep learning projects.

---

## 🛠️ Technologies Used

- **Python 3.x**: Core programming language
- **TensorFlow/Keras**: Deep learning frameworks
- **NumPy/Pandas**: Data handling and preprocessing
- **Matplotlib**: Visualization of results
- **Jupyter Notebooks**: Interactive development and documentation

---

## 🚀 How to Use:

1. **Clone the repository**:
```bash
git clone https://github.com/Blacksujit/Deep-Learning-Repository.git
```
2. **Navigate to a project**:
```bash
cd
```
3. **Install dependencies**:
```bash
pip install -r requirements.txt
```
4. **Run the notebook**:
```bash
jupyter notebook
```

## Some dump output images generated by the Neural Networks models :

**1.) dataviz dashboard:**

![image](https://github.com/user-attachments/assets/81969dfd-68c2-4b25-8708-d863a8f8b5fb)

**2.) Application layers:**

![image](https://github.com/user-attachments/assets/207e4673-dbeb-4f67-a0b8-d8201d4ffe08)

**3.)Binnary Exponential Backoff:**

![image](https://github.com/user-attachments/assets/21b470da-e2b6-4dcb-84f6-56827bba5999)

![image](https://github.com/user-attachments/assets/fafcc07b-f5ac-4918-9017-41a663c90d2a)

---

## ⚙️ Automation Code for Updating Project List
Add the following Python script to your repository's root directory as `update_readme.py`. Run this script to automatically update the project list:

```python
import os

README_FILE = "README.md"
PROJECT_LIST_START = ""
PROJECT_LIST_END = ""

def get_projects():
projects = []
for item in os.listdir():
if os.path.isdir(item) and item not in ['.git', '__pycache__', '.github']:
if os.path.exists(os.path.join(item, 'README.md')):
projects.append(item)
return sorted(projects)

def update_readme(projects):
with open(README_FILE, 'r') as file:
content = file.read()

before = content.split(PROJECT_LIST_START)[0]
after = content.split(PROJECT_LIST_END)[1]

project_list = "\n".join([f"- [{project}](./{project}/README.md)" for project in projects])
new_content = f"{before}{PROJECT_LIST_START}\n{project_list}\n{PROJECT_LIST_END}{after}"

with open(README_FILE, 'w') as file:
file.write(new_content)

def main():
projects = get_projects()
update_readme(projects)
print("README.md updated successfully!")

if __name__ == "__main__":
main()
```

### How to Use:
1. Add the script to your repository as `update_readme.py`.
2. Run the script:
```bash
python update_readme.py
```
3. Commit and push the changes:
```bash
git add README.md
git commit -m "Update project list dynamically"
git push
```

---

## 🤝 Contributing
1. Fork the repository.
2. Add your project in a separate folder.
3. Commit your changes:
```bash
git commit -m "Add new project: "
```
4. Submit a pull request.

---

## ⭐ Stay Updated
This repository updates itself dynamically! Just add your projects into the root directory following this structure:
```bash
Deep-Learning-Repository/

├── Project-1/
│ ├── README.md
│ └── main.ipynb

├── Project-2/
│ ├── README.md
│ └── main.ipynb

└── README.md
```

---

⭐ **Star this repository** to keep track of new updates!

---

## Contact:
- **GitHub**: [Sujit Nirmal](https://github.com/Blacksujit)
- **Email**:[email protected]