Laura Uzcategui

Results 4 issues of Laura Uzcategui

Hi @koirand , I'm trying to update my site, I've been playing around with adding _index for working with front-matters but it seems the content is not rendered properly. Do...

The link to open datasets for Diabetes catalog seems to be broken. https://learn.microsoft.com/en-us/python/api/azureml-opendatasets/azureml.opendatasets.diabetes?view=azure-ml-py It seems the right link to catalog is: https://learn.microsoft.com/en-gb/azure/open-datasets/dataset-diabetes?tabs=azureml-opendatasets --- #### Document Details ⚠ *Do not edit...

Fix for Update for Adam optimizer compatibility on TF 2.0 https://github.com/lmoroney/dlaicourse/issues/46 Updated: ``` model.compile(optimizer = tf.train.Adam(), loss = 'sparse_categorical_crossentropy', metrics=['accuracy']) ``` to be: ``` model.compile(optimizer = 'adam', loss = 'sparse_categorical_crossentropy',...

Hi @jind11 , I hope you are great :) I'm working on a project for my class XCS224U - Natural Language Understanding @ Stanford, and I'm trying to use MedQA...