Franklin Tse

Results 7 comments of Franklin Tse

@ganicke I think the `groups` attribute is working, if it is specified in the correct format. The code below should work: ```ts /** * Organize your blocks in groups */...

I think this PR may need to be amended: https://github.com/microsoft/pxt/issues/7258#issuecomment-728755161

Is it possible to enable Python support for the sample? Thanks.

The error is caused by an extra `?` in `tree\tree.d.ts`: Current: ```ts predict(X?: Type2DMatrix): any[]; ``` If the `?` is removed, the error will not occur: ```ts predict(X: Type2DMatrix): any[];...

Adding a calibrator to `FastForestBinaryTrainer` will be a breaking due to the change of base class. Should the [documentation](https://learn.microsoft.com/en-us/dotnet/api/microsoft.ml.trainers.fasttree.fastforestbinarytrainer?view=ml-dotnet) be updated to reflect the status and provide steps to calibrate...

I am not sure where I may get the logs, but here are some screenshots showing the problem: The files are last-modified at 2023-12-15 03:10 +08:00: ![image](https://github.com/microsoft/vscode-azureappservice/assets/8416067/75ab6d7e-903b-4771-af9b-dc72259d91c2) After the files...

I hope the doc will show how to use `AddOpenIdConnect` instead of `Identity.Web`. `Identity.Web` requires `EnableTokenAcquisitionToCallDownstreamApi` to use the authorization code flow (which then requires token storage), adds `offline_access` to...