0Pricing
Deep Learning Academy · Урок

Изменение формы, View, Squeeze и Unsqueeze

Изменяйте размерности без копирования данных

«Изменение формы, View, Squeeze и Unsqueeze» — бесплатный урок Deep Learning Academy на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Deep Learning Academy, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Deep Learning Academy содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Same Data, Different Shape

Often the numbers are right but the layout is wrong. Reshaping rearranges a tensor's dimensions without changing the values inside.

reshape Picks a New Layout

Call reshape with the dimensions you want. The total number of elements must stay the same.

x = torch.arange(6)
y = x.reshape(2, 3)
print(y.shape)  # torch.Size([2, 3])

Let -1 Infer a Dimension

Pass -1 for one dimension and PyTorch computes it for you from the total count. Handy when you only know the rest.

x = torch.arange(6)
y = x.reshape(-1, 2)
print(y.shape)  # torch.Size([3, 2])

view Shares the Same Memory

view reshapes without copying, so it is fast. It needs the data to be laid out contiguously in memory.

x = torch.arange(6)
y = x.view(3, 2)
print(y.shape)  # torch.Size([3, 2])

reshape Is the Safer Default

When in doubt, reach for reshape. It works even on non-contiguous tensors by copying only if it must.

Squeeze Removes Size-1 Dims

squeeze strips out any dimension of length 1. It cleans up shapes like (1, 5) down to a simple (5).

x = torch.zeros(1, 5)
y = x.squeeze()
print(y.shape)  # torch.Size([5])

Squeeze a Specific Dimension

Give squeeze an index to remove only that dimension. Safer when other size-1 dims should stay put.

x = torch.zeros(1, 5, 1)
y = x.squeeze(0)
print(y.shape)  # torch.Size([5, 1])

Unsqueeze Adds a Dimension

unsqueeze inserts a new size-1 dimension at the position you choose. It is the exact opposite of squeeze.

x = torch.tensor([1, 2, 3])
y = x.unsqueeze(0)
print(y.shape)  # torch.Size([1, 3])

Why You Add a Batch Dimension

Models expect a batch dimension up front. unsqueeze(0) turns one sample into a batch of one so the model accepts it.

sample = torch.randn(3)
batch = sample.unsqueeze(0)
print(batch.shape)  # torch.Size([1, 3])

Flatten Down to One Line

flatten collapses every dimension into a single long vector. It is common right before a final linear layer.

x = torch.zeros(2, 3)
y = x.flatten()
print(y.shape)  # torch.Size([6])

Element Count Never Changes

Every reshape trick keeps the same total number of values. If the counts don't match, PyTorch raises a shape error.

Quick Check

Let's see if you can predict the shape changes.

Recap: Reshape, View, Squeeze & Unsqueeze

You can now bend tensors into any layout: reshape for flexibility, view for speed, and squeeze or unsqueeze to drop and add dimensions. 🔧

Часто задаваемые вопросы

Урок «Изменение формы, View, Squeeze и Unsqueeze» бесплатный?

Да — полный текст урока «Изменение формы, View, Squeeze и Unsqueeze» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Deep Learning Academy, подпишись на CoddyKit PRO. Курс Deep Learning Academy содержит 4 уроков всего.

Чему я научусь в уроке «Изменение формы, View, Squeeze и Unsqueeze»?

Изменяйте размерности без копирования данных Ты практикуешь Deep Learning Academy с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Deep Learning Academy?

Предыдущий опыт не требуется. Deep Learning Academy на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.

Сколько времени занимает урок «Изменение формы, View, Squeeze и Unsqueeze»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Deep Learning Academy?

Да. Каждый урок Deep Learning Academy включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Формы, типы данных и индексация
  2. Изменение формы, View, Squeeze и Unsqueeze
  3. Правила broadcasting, которые избавят от циклов
  4. Тензоры взаимодействуют с NumPy
← Назад к Deep Learning Academy