Skip to content
#

tutorials

Here are 206 public repositories matching this topic...

oppia
U8NWXD
U8NWXD commented Mar 7, 2022

Introduction

We would like to have a pylint check for indentation in Python code. This will likely require a custom lint check. Here are some of the cases we want to handle:

Indent By 4 Spaces

Good:

def func():
    pass
my_list = [
    'a',
    'b',
]

Bad:

def func():
  pass
my_list = ['a',
           '
eshoyuan
eshoyuan commented Mar 12, 2022

"Multi-task training to efficiently combine object detection, segmentation, and classification models" is a feature of icevision. However, I don't know how to use icevision to do multi-task learning like object detection and classication. I just need a simple example without details.


Don't remove
Main issue for examples: #39

documentation help wanted good first issue example request
qml
josh146
josh146 commented Apr 23, 2021

The init module has been deprecated, and the recommend approach for generating initial weights is to use the Template.shape method:

>>> from pennylane.templates import StronglyEntanglingLayers
>>> qml.init.strong_ent_layers_normal(n_layers=3, n_wires=2) # deprecated
>>> np.random.random(StronglyEntanglingLayers.shape(n_layers=3, n_wires=2))  # new approach

We should upd

help wanted good first issue
Borda
Borda commented Jun 25, 2021

🚀 Feature

Dynamically extend the time limit for running CI on PR touching more content

Motivation

do not penalise PR which are touching multiple notebooks

Additional context

Run one tiny job which would determine how many notebooks are changed, and pass this count N to the test job and for example set timeout for testing as N*30min

enhancement good first issue help wanted CI/CD
tutorialdb

Improve this page

Add a description, image, and links to the tutorials topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tutorials topic, visit your repo's landing page and select "manage topics."

Learn more