interview(Technical) Flashcards
interview(Technical).generator
это итератор, который обычно создается путем вызова функции, содержащей не менее одного оператора yield. Запоминает состояние и выдает по одному объекту за раз при вызове функции yield.
def firstn(n): num = 0 while num < n: yield num num += 1 sum_of_first_n = sum(firstn(1000000))
Tensorflow vs Scikit-Learn
👉 Tensorflow is mainly used for deep learning and Neural Networks.
👉 Scikit-Learn is used for machine learning and contains ready to use algorithms.
Deep learning
uses artificial neural networks to mimic the learning process of the human brain.
Machine Learning
AI that can automatically adapt with minimal human interference. Computers learning from data using algorithms to perform a task without being explicitly programmed.
Artificial Intelligence
A science devoted to making machines think and act like humans.