TGViewer
Channel Public Channel
Machinelearning tests

Machinelearning tests

@machinelearningtest

По всем вопросам- @haarrp

@ai_machinelearning_big_data - машинное обучение

@programming_books_it - бесплатные it книги

@pythonl - 🐍

@ArtificialIntelligencedl - AI

@datascienceiot -ds книги
Subscribers
661
Photos
35
Videos
0
Links
0

Showing posts older than #73 · Back to latest

Older Posts 20 shown
Post #72 349
Что выведет код?
c = filter(lambda x: x>=3, map(lambda x: x+x, (1, 2, 3, 4)))
print(list(c))
Post #71 1.85K
Post #70 1.76K
Вычисление трех видов норм вектора (линейная алгебра). Какой будет вывод?
a = np.array([1, 2, 3])
n1 = round(np.linalg.norm(a, ord=np.inf), 1)
n2 = round(np.linalg.norm(a, ord=1), 1)
n3 = round(np.linalg.norm(a, ord=2), 1)
print(n1, n2, n3)
Post #66 257
Что выведет код?
c = map(lambda x: x + x, filter(lambda x: (x>3), (1, 2, 3, 4)))
print(list(c))
Post #60 190
Что выведет код?
from functools import reduce
y = reduce(lambda a, b: a + b , [1, 2, 3, 4])
print(y)
Older posts →
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →