Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iteration Plan for October 2023 #195109

Closed
28 of 52 tasks
kieferrm opened this issue Oct 8, 2023 · 3 comments
Closed
28 of 52 tasks

Iteration Plan for October 2023 #195109

kieferrm opened this issue Oct 8, 2023 · 3 comments
Assignees
Labels
iteration-plan VS Code - Upcoming iteration plan
Milestone

Comments

@kieferrm
Copy link
Member

kieferrm commented Oct 8, 2023

This plan captures our work in October. This is a 4-week iteration. We will ship in early November.

Endgame

  • October 23, 2023: Endgame begins
  • October 27, 2023: Endgame done

The endgame details for this iteration are tracked here.

Plan Items

Below is a summary of the top level plan items.

Legend of annotations:

Mark Description
🏃 work in progress
blocked task
💪 stretch goal for this iteration
🔴 missing issue reference
🔵 more investigation required to remove uncertainty
under discussion within the team
a large work item, larger than one iteration

Accessibility

UX

Workbench

Code Editor

Comments

  • None.

Notebook Editor

Jupyter Notebooks

WebAssembly Support

Languages

Python

Language Server Protocol

Source Control

Tasks

  • None.

Testing

Debug

API

Extensions

Extension Contributions

Documentation

Engineering

Electron

  • None.

Deferred

@kieferrm kieferrm added the iteration-plan-draft VS Code - Upcoming iteration plan (Draft) label Oct 8, 2023
@kieferrm kieferrm added this to the October 2023 milestone Oct 8, 2023
@kieferrm kieferrm pinned this issue Oct 8, 2023
@kieferrm kieferrm changed the title Iteration Plan for October 2023 [DRAFT] Iteration Plan for October 2023 Oct 10, 2023
@kieferrm kieferrm added iteration-plan VS Code - Upcoming iteration plan and removed iteration-plan-draft VS Code - Upcoming iteration plan (Draft) labels Oct 10, 2023
@RichCaloggero
Copy link

Instead of using visual descriptions of icons, then requiring a screen reader user to look up and remember the meaning of the icon (i.e. "personRunning" means "work in progress"), just use "work in progress" as the icon label.

@WatchTower001110
Copy link

WatchTower001110 commented Nov 1, 2023

from azure.ai.ml.entities import AmlCompute

Name assigned to the compute cluster

cpu_compute_target = "cpu-cluster"

try:
# let's see if the compute target already exists
cpu_cluster = ml_client.compute.get(cpu_compute_target)
print(
f"You already have a cluster named {cpu_compute_target}, we'll reuse it as is."
)

except Exception:
print("Creating a new cpu compute target...")

# Let's create the Azure Machine Learning compute object with the intended parameters
# if you run into an out of quota error, change the size to a comparable VM that is available.
# Learn more on https://azure.microsoft.com/en-us/pricing/details/machine-learning/.
cpu_cluster = AmlCompute(
    name=cpu_compute_target,
    # Azure Machine Learning Compute is the on-demand VM service
    type="amlcompute",
    # VM Family
    size="STANDARD_DS3_V2",
    # Minimum running nodes when there is no job running
    min_instances=0,
    # Nodes in cluster
    max_instances=4,
    # How many seconds will the node running after the job termination
    idle_time_before_scale_down=180,
    # Dedicated or LowPriority. The latter is cheaper but there is a chance of job termination
    tier="Dedicated",
)
print(
    f"AMLCompute with name {cpu_cluster.name} will be created, with compute size {cpu_cluster.size}"
)
# Now, we pass the object to MLClient's create_or_update method
cpu_cluster = Aml_client.compute.begin_create_or_update(cpu_cluster)

#195109 (comment)

@WatchTower001110
Copy link

az extension remove -n azure-cli-ml
az extension remove -n azure-cli-ml*

@bpasero bpasero unpinned this issue Nov 6, 2023
@github-actions github-actions bot locked and limited conversation to collaborators Dec 16, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
iteration-plan VS Code - Upcoming iteration plan
Projects
None yet
Development

No branches or pull requests

7 participants