Gursimar Singh

Results 6 issues of Gursimar Singh

Adding a folder related to transfer learning in PyTorch, with popular pre-trained models like VGG-16, VGG-19 and several ResNet models (18, 34, 50, 101, 152).

Implement the application in flask rather than a simple cv2 window. Reference article : [https://towardsdatascience.com/video-streaming-in-web-browsers-with-opencv-flask-93a38846fe00](https://towardsdatascience.com/video-streaming-in-web-browsers-with-opencv-flask-93a38846fe00)

good first issue
hacktoberfest

Improving accuracy of model by using euclidean distance between hand landmarks rather than their raw coordinate value. Gestures will be better recognised on any part of the screen.

enhancement
hacktoberfest

Keywords can be added in the metadata section of each article with he following syntax; `keywords: ["keyword1", "keyword2"]` Allows for better SEO.

## ❓Question Here is my code for the PyTorch lightning trainer ``` import lightning as L trainer = L.Trainer( max_epochs=EPOCHS, accelerator=DEVICE, logger = aim.Run(experiment="trial_exp_lightning") ) trainer.fit(training_module, train_loader, test_loader) ``` Upon...

type / question

I have a 3D model in a .obj file and it's textures in a .mtl file in the same directory under the same name. How do I load both in...