0% found this document useful (0 votes)
17 views3 pages

3 Month AI Architect Learning Program

The 3-month AI Architect Learning Program aims to equip individuals with essential AI/ML skills through foundational knowledge and practical exercises. The first month focuses on building a linear regression model and cleaning and visualizing data using Python and Google Colab. Participants will work with datasets such as the diabetes dataset and the Titanic dataset to apply their learning in hands-on projects.

Uploaded by

rozettakate
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views3 pages

3 Month AI Architect Learning Program

The 3-month AI Architect Learning Program aims to equip individuals with essential AI/ML skills through foundational knowledge and practical exercises. The first month focuses on building a linear regression model and cleaning and visualizing data using Python and Google Colab. Participants will work with datasets such as the diabetes dataset and the Titanic dataset to apply their learning in hands-on projects.

Uploaded by

rozettakate
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

3-Month AI Architect Learning Program

This 3-month learning program is designed to help individuals develop the skills needed to
become an AI Architect. It focuses on building a strong foundation in AI/ML concepts,
practical exercises, and project-based learning using free, simplified resources.

Month 1: Foundations of AI and ML


Goal: Build a foundation in AI/ML concepts and data handling.

Practice 1: Build a Linear Regression Model (Week 1-2)


Tools: Python, Google Colab

Steps:

1. 1. Open Google Colab and create a new notebook.


2. 2. Import libraries:

```python
import numpy as np
import pandas as pd
from sklearn.linear_model import LinearRegression
from sklearn.model_selection import train_test_split
from sklearn.metrics import mean_squared_error
```

3. 3. Load a dataset: Use a simple dataset like sklearn.datasets.load_diabetes.

```python
from sklearn.datasets import load_diabetes
data = load_diabetes()
X, y = data.data, data.target
```

4. 4. Split the data:

```python
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
```
5. 5. Train the model:

```python
model = LinearRegression()
model.fit(X_train, y_train)
```

6. 6. Evaluate the model:

```python
predictions = model.predict(X_test)
mse = mean_squared_error(y_test, predictions)
print(f"Mean Squared Error: {mse}")
```

7. 7. Visualize the results (optional): Plot actual vs. predicted values.

Practice 2: Clean and Visualize Data (Week 3-4)


Tools: Python, Kaggle Datasets

Steps:

8. 1. Download the Titanic dataset from Kaggle.


9. 2. Open a notebook in Google Colab and load the data:

```python
import pandas as pd
data = pd.read_csv('titanic.csv')
data.head()
```

10. 3. Clean the data:

- Handle missing values:


```python
data['Age'].fillna(data['Age'].mean(), inplace=True)
```
- Drop irrelevant columns:
```python
data.drop(['Cabin', 'Name'], axis=1, inplace=True)
```

11. 4. Visualize the data:

```python
import seaborn as sns
sns.countplot(x='Survived', hue='Sex', data=data)
```

12. 5. Save and share your notebook on Kaggle or GitHub.

You might also like