interview(Technical) Flashcards

1
Q

interview(Technical).generator

A

это итератор, который обычно создается путем вызова функции, содержащей не менее одного оператора yield. Запоминает состояние и выдает по одному объекту за раз при вызове функции yield.

def firstn(n):
    num = 0
    while num < n:
        yield num
        num += 1

sum_of_first_n = sum(firstn(1000000))
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Tensorflow vs Scikit-Learn

A

👉 Tensorflow is mainly used for deep learning and Neural Networks.
👉 Scikit-Learn is used for machine learning and contains ready to use algorithms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Deep learning

A

uses artificial neural networks to mimic the learning process of the human brain.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Machine Learning

A

AI that can automatically adapt with minimal human interference. Computers learning from data using algorithms to perform a task without being explicitly programmed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Artificial Intelligence

A

A science devoted to making machines think and act like humans.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly