Questions tagged [d2l]

Questions about the Python library accompanying the d2l.ai textbook.

Questions about the Python library accompanying the Dive into Deep Learning textbook.

9 questions
1
vote
2 answers

d2l package installation on google colab

I need to intall d2l package with pip install d2l==1.0.0b0 However, whenever I try to download it to google colab, the following error occurs: Looking in indexes: https://pypi.org/simple,…
minjae35
  • 11
  • 1
1
vote
0 answers

Inception V2 not improving on Inception V1

I am following the D2L book and one of the exercises on the GoogLeNet chapter is to take the model from the Rethinking the Inception Architecture for Computer Vision paper so I did that and basically recreated the Inception V2 architecture based on…
1
vote
1 answer

How do I install the d2l library on Windows without conda?

The d2l.ai textbook includes its own Python library, d2l. Their instructions recommend installing with conda, a Python package manager that also functions as a general library manager. But I've been burned by conda a couple times, and prefer pure…
Josiah Yoder
  • 3,321
  • 4
  • 40
  • 58
0
votes
0 answers

How to use the m1 chip macbook to use the gpu acceleration on d2l?

d2l: https://d2l.ai/ I modified def try_gpu(i=0): and def try_all_gpus() in the torch.py ​​: def try_gpu(i=0): """Return gpu(i) if exists, otherwise return cpu(). Defined in :numref:`sec_use_gpu`""" if torch.cuda.device_count() >= i + 1: return…
lf x
  • 1
0
votes
0 answers

SageMaker Studio Lab No Longer Connects to d2l:Python Kernel

How can I restore my SageMaker Studio Lab environment so that it connects successfully again to the d2l:Python kernel? I installed some packages using %pip (instead of %conda as I have since learned is recommended -- the packages I needed were not…
0
votes
0 answers

Not Able to fetch assignment "Blackboard"

How to fetch assignment from course? I am using below API for getting content. But I am getting this:- { "status": 404, "message": "API is not found for the specified…
0
votes
0 answers

Error creating discussion forum in D2L linked with topic or module using REST API

Below api is correct for creating discussion forum in module or wrong API Endpoint: < domain >/d2l/api/le/1.63/< orgUnitId >/content/modules/< moduleId >/structure/ Payload: { "TopicType": 0, "Url": "", "StartDate": null, "EndDate": …
Bhumi Shah
  • 9,323
  • 7
  • 63
  • 104
0
votes
0 answers

POST https://someLMShost.edu/d2l/api/le/{version}/{orgUnit}/dropbox/folders/{folderId}/submissions/mysubmissions

When I run d2l upload to drop box api with my access token then it gives me Request has missing or invalid parameters I didn't get what I am missing? what are the missing parameters? This is the api which I use:…
0
votes
0 answers

Why the pip command for installing MXNET on Windows is not working/not installing properly?

I was trying to install the mxnet framework for d2l, using the instructions provided in the documentation at https://d2l.ai/chapter_installation/index.html# . But for whatever reason when I run the command for the GPU version of mxnet: pip install…