शैडोइंग अभ्यास: PyTorch in 100 Seconds - वीडियो के साथ अंग्रेजी बोलना सीखें

लोड हो रहा है...
1
PyTorch, an open-source deep learning framework used to build some of the world's most famous artificial intelligence products.
2
It was created at the Meta AI Research Lab in 2016, but is actually derived from the Lua-based Torch library that dates back to 2002.
3
Fundamentally, it's a library for programming with tensors, which are basically just multi-dimensional arrays that represent data and parameters in deep neural networks.
4
Sounds complicated, but its focus on usability will have you training machine learning models with just a few lines of Python.
5
In addition, it facilitates high-performance parallel computing on a GPU, thanks to NVIDIA's CUDA platform.
6
Developers love prototyping with it because it supports a dynamic computational graph, allowing models to be optimized at runtime.
7
It does this by constructing a directed acyclic graph consisting of functions
8
that keeps track of all the executed operations on the tensors, allowing you to change the shape, size, and operations after every iteration if needed.
9
PyTorch has been used to train models for computer vision AI like Tesla Autopilot, image generators like Stable Diffusion, and speech recognition models like OpenAI Whisper, just to name a few.
10
To get started, install PyTorch, and optionally CUDA, if you want to accelerate computing on your GPU.
11
Now import it into a Python file or notebook.
12
Like I mentioned, a tensor is similar to a multi-dimensional array.
13
Create a 2D array or matrix with Python, then use Torch to convert it into a tensor.
14
Now we can run all kinds of computations on it, like we might convert all these integers into random floating points.
15
We can also perform linear algebra by taking multiple tensors and multiplying them together.
16
What you came here to do though is build a deep neural network, like an image classifier.
17
To handle that, we can define a new class that inherits from the Neural Network Module class.
18
Inside the constructor, we can build it out layer by layer.
19
The flattened layer will take a multi-dimensional input, like an image, and convert it to one dimension.
20
From there, Sequential is used to create a container of layers that the data will flow through.
21
Each layer has multiple nodes, where each node is like its own mini statistical model.
22
As each data point flows through it, it'll try to guess the output, and gradually update a mapping of weights to determine the importance of a given variable.
23
Linear is a fully connected layer that takes the flattened 28x28 image and transforms it to an output of 512.
24
This layer is followed by a non-linear activation function.
25
When activated, it means that feature might be important and outputs the node.
26
Otherwise, it just outputs zero.
27
And finally, we finish with a fully connected layer that outputs the 10 labels the model is trying to predict.
28
With these pieces in place, the next step is to define a forward method that describes the flow of data.
29
And now instantiate the model to a GPU and pass it some input data.
30
This will automatically call its forward method for training and prediction.
31
Congratulations, you just built a neural network.
32
This has been PyTorch in 100 seconds.
33
Thanks for watching, and I will see you in the next one.

संदर्भ और पृष्ठभूमि

इस वीडियो में, "PyTorch in 100 Seconds," एक लोकप्रिय ओपन-सोर्स गहरी शिक्षण ढांचे के बारे में चर्चा की गई है, जो आर्टिफिशियल इंटेलिजेंस उत्पादों के निर्माण में महत्वपूर्ण भूमिका निभा रहा है। यह ढांचा 2016 में Meta AI Research Lab द्वारा विकसित किया गया था और इसका मूल Lua-आधारित Torch लाइब्रेरी से है। वीडियो में बताया गया है कि PyTorch कैसे मल्टी-डायमेंशनल ऐरेज़, जिसे टेन्सर कहा जाता है, के साथ काम करता है और कैसे इसे उपयोग करना सरल है। यह वीडियो उन सब के लिए है जो मशीन लर्निंग और गहरी शिक्षा में रुचि रखते हैं।

रोज़ाना संवाद के लिए शीर्ष 5 वाक्यांश

  • “रन ऑल काइंड्स ऑफ कंप्यूटेशंस” - इसका मतलब है सभी प्रकार की गणनाएँ करना।
  • “डायरेक्टेड ऐसाइक्लिक ग्राफ” - यह एक प्रकार का ग्राफ है जो टेन्सर पर की गई सभी क्रियाओं को ट्रैक करता है।
  • “फ्लैटनिंग लेयर” - यह एक मल्टी-डायमेंशनल इनपुट को एक डायमेंशन में परिवर्तित करता है।
  • “नॉन-लिनियर एक्टिवेशन फंक्शन” - यह उस विशेषता को सक्रिय करता है जो महत्वपूर्ण हो सकती है।
  • “फॉरवर्ड मेथड” - यह डेटा के प्रवाह का विवरण देता है।

कदम-दर-कदम छाया बोलने का मार्गदर्शिका

इस वीडियो की सामग्री को समझने के लिए, आप शैडो स्पीकिंग तकनीक का उपयोग कर सकते हैं। यह तकनीक आपको वीडियो के संवाद को सुनने और उसके साथ-साथ बोलने में मदद करती है, जिससे आपका अंग्रेजी उच्चारण में सुधार होता है। यहाँ एक सरल मार्गदर्शिका दी गई है:

  • वीडियो को एक बार ध्यान से सुनें।
  • सुनते समय महत्वपूर्ण वाक्यांशों को पहचानें।
  • फिर से वीडियो को खेलें और प्रत्येक वाक्यांश को दोहराएं, ध्यान दें कि आपकी आवाज़ और वीडियो के बोलने के तरीके में क्या अंतर है।
  • समय-समय पर रुकें और खुद से सवाल करें कि आप कैसे बेहतर कर सकते हैं।
  • इस प्रक्रिया को नियमित रूप से दोहराएं, ताकि आपकी शैडो स्पीकिंग कौशल में सुधार हो।

आप शैडो स्पीक का अभ्यास करते समय धैर्य रखें और अपने आप पर विश्वास रखें। धीरे-धीरे, आप पाएंगे कि आपकी अंग्रेजी बोलने की क्षमता में न केवल सुधार हो रहा है, बल्कि आप अधिक आत्मविश्वास के साथ संवाद कर पा रहे हैं।

शैडोइंग तकनीक क्या है?

शैडोइंग (Shadowing) एक विज्ञान-समर्थित भाषा सीखने की तकनीक है जो मूल रूप से पेशेवर दुभाषिया प्रशिक्षण के लिए विकसित की गई थी। विधि सरल लेकिन शक्तिशाली है: आप मूल अंग्रेज़ी ऑडियो सुनते हैं और तुरंत इसे ज़ोर से दोहराते हैं — जैसे वक्ता की छाया 1-2 सेकंड की देरी से। शोध से पता चलता है कि यह उच्चारण सटीकता, स्वर, लय, जुड़ी हुई ध्वनियाँ, सुनने की समझ और बोलने की प्रवाहशीलता में काफ़ी सुधार करता है।