AI principles

studied byStudied by 1 person
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 3

flashcard set

Earn XP

Description and Tags

AI engineer training

4 Terms

1

Name 4 eda(Explore Data Libraries)

import pandas as pd

import numpy as np

%matplotlib inline

import matplotlib.pyplot as plt

import seaborn as sns

New cards
2

Name 6 Models from Scikit-Learn (estimators/models)

from sklearn.linear_model import LogisticRegression

from sklearn.neighbors import KNeighborsClassifier

from sklearn.ensemble import RandomForestClassifier

from sklearn.pipeline import make_pipeline

from sklearn import preprocessing

from sklearn.preprocessing import StandardScaler

New cards
3

Name 5 Model Evaluators used split the data, tune the data and get your classificatin metrics

# split data into training and test sets

from sklearn.model_selection import train_test_split, cross_val_score

from sklearn.model_selection import RandomizedSearchCV, GridSearchCV

from sklearn.metrics import confusion_matrix, classification_report

# classification metrics

from sklearn.metrics import precision_score, recall_score, f1_score

from sklearn.metrics import RocCurveDisplay

New cards
4

Give an example of how to import and show data from a file using Pandas

dataframe = pd.read_csv("data/heart-disease.csv")

dataframe.head(1)

New cards

Explore top notes

note Note
studied byStudied by 26 people
854 days ago
4.0(1)
note Note
studied byStudied by 7 people
5 days ago
5.0(9)
note Note
studied byStudied by 6 people
762 days ago
5.0(1)
note Note
studied byStudied by 63 people
225 days ago
5.0(1)
note Note
studied byStudied by 11 people
293 days ago
5.0(1)
note Note
studied byStudied by 2 people
13 days ago
5.0(1)
note Note
studied byStudied by 14 people
818 days ago
5.0(1)
note Note
studied byStudied by 11 people
435 days ago
5.0(1)

Explore top flashcards

flashcards Flashcard (46)
studied byStudied by 34 people
273 days ago
5.0(1)
flashcards Flashcard (97)
studied byStudied by 18 people
784 days ago
5.0(1)
flashcards Flashcard (35)
studied byStudied by 23 people
689 days ago
5.0(3)
flashcards Flashcard (198)
studied byStudied by 5 people
797 days ago
5.0(1)
flashcards Flashcard (42)
studied byStudied by 3 people
247 days ago
5.0(1)
flashcards Flashcard (25)
studied byStudied by 2 people
618 days ago
4.0(1)
flashcards Flashcard (28)
studied byStudied by 259 people
380 days ago
5.0(1)
flashcards Flashcard (119)
studied byStudied by 132 people
141 days ago
5.0(2)
robot