SlideShare a Scribd company logo
Workspace Design and Setup
Projects
Oracle Cloud Infrastructure Data Science
What are projects?
2021:
Professor, Anthony
Klotz, predicts and coins
the term “The Great
Resignation” of the U.S.
workforce.
Collaborative workspaces
for teams of data scientists
Projects give data scientists the power
to:
• Organize work around use cases
• Create Data Science resources
• Specify project names and
descriptions
Create Projects
From the Console
 You must have necessary
policies in place.
 You must select a compartment.
 (optional) Enter unique project
name; otherwise, one is
automatically generated.
 (optional) Add tags to easily
locate and track the resource.
From ADS SDK
 Use the ProjectCatalog object:
 Create a project by calling
the create_project() method.
 Specify the compartment ID.
compartment_id = os.environ['NB_SESSION_COMPARTMENT_OCID']
pc = ProjectCatalog(compartment_id=compartment_id)
new_project = pc.create_project(display_name=’My New Project',
description=’My Project Description',
compartment_id=compartment_id)
There are two ways to create a Data Science project to organize your notebook sessions and models.
Delete
View Edit
You can view all projects on
the Project List page.
View displays project details
and metadata:
⏵ Display name
⏵ Description
⏵ OCID
⏵ Created on date/time
⏵ Created by (user OCID)
⏵ Tags
You can delete a project if it’s
empty and all associated
Data Science resources are
deleted.
Deleted projects remain in
the list for 30 days.
Use state filter to filter
projects.
You can view and edit
projects through any of the
OCI interfaces.
The only editable fields are:
⏵ Display Name
⏵ Description
⏵ Tags
Viewing, Editing, and Deleting Projects
Demo

More Related Content

DOC
Victor Holderby - Project Manger
DOCX
Project PlanGroup 2The Data Center Project PlanProj.docx
PDF
Odi ireland rittman
PDF
Progress OpenEdge database administration guide and reference
PPTX
Software Engineering
PDF
example-company-organizational-chart.pdf
PPTX
Color_Coded_Organization_Chart_Deve.pptx
PPT
PowerPoint_merge.pptPowerPoint_merge.pptPowerPoint_merge.ppt
Victor Holderby - Project Manger
Project PlanGroup 2The Data Center Project PlanProj.docx
Odi ireland rittman
Progress OpenEdge database administration guide and reference
Software Engineering
example-company-organizational-chart.pdf
Color_Coded_Organization_Chart_Deve.pptx
PowerPoint_merge.pptPowerPoint_merge.pptPowerPoint_merge.ppt

More from SRM institute, Modinagar (7)

PPT
PowerPoint_merge (1)PowerPoint_merge (1)
PPTX
ORACLE-FUSION-FINANCIALS-PPT-FINANCIALS-PPT
PPT
oracleprojectcostmanagementfundamentalss
PPT
Oracle_ProjectCostManagementDocumentation
PPT
Oracle_ProjectCostingFndamentalsebs12.ppt
PPTX
ORACLE_EBS_12_PAYROLL_COURSE_CONTEN.pptx
PPTX
Oracle_HCM_Sample_Oracle_HCM_Sample.pptx
PowerPoint_merge (1)PowerPoint_merge (1)
ORACLE-FUSION-FINANCIALS-PPT-FINANCIALS-PPT
oracleprojectcostmanagementfundamentalss
Oracle_ProjectCostManagementDocumentation
Oracle_ProjectCostingFndamentalsebs12.ppt
ORACLE_EBS_12_PAYROLL_COURSE_CONTEN.pptx
Oracle_HCM_Sample_Oracle_HCM_Sample.pptx
Ad

Recently uploaded (20)

PPT
Leadership essentials to build your carrier
PPTX
1-4 Chaptedjkfhkshdkfjhalksjdhfkjshdljkfhrs.pptx
PPTX
Discovering the LMA Course by Tim Han.pptx
PPTX
CORE 1 HOUSEKEEPING TOURISM SECTOR POWERPOINT
PPTX
Nervous_System_Drugs_PPT.pptxXXXXXXXXXXXXXXXXX
PPTX
Untitled presentation voice baed jounral
PDF
Josh Gao Strength to Strength Book Summary
PPTX
Life Skills Stress_Management_Presentation.pptx
PDF
L-0018048598visual cloud book for PCa-pdf.pdf
DOCX
mcsp232projectguidelinesjan2023 (1).docx
PDF
Daisia Frank: Strategy-Driven Real Estate with Heart.pdf
DOC
field study for teachers graduating samplr
PPTX
Surgical thesis protocol formation ppt.pptx
PPTX
jinsha and arif-2.pptx blood factors and diseases
PPTX
Autonomic_Nervous_SystemM_Drugs_PPT.pptx
PPTX
Pre-Mendelian-and-Post-Mendelian-Concepts-of-Heredity (1).pptx
PPTX
chapter 3_bem.pptxKLJLKJLKJLKJKJKLJKJKJKHJH
PPTX
_+✅+JANUARY+2025+MONTHLY+CA.pptx current affairs
PPTX
MASTERING COMMUNICATION SKILLS.pptxgdee33w
PPTX
Job-opportunities lecture about it skills
Leadership essentials to build your carrier
1-4 Chaptedjkfhkshdkfjhalksjdhfkjshdljkfhrs.pptx
Discovering the LMA Course by Tim Han.pptx
CORE 1 HOUSEKEEPING TOURISM SECTOR POWERPOINT
Nervous_System_Drugs_PPT.pptxXXXXXXXXXXXXXXXXX
Untitled presentation voice baed jounral
Josh Gao Strength to Strength Book Summary
Life Skills Stress_Management_Presentation.pptx
L-0018048598visual cloud book for PCa-pdf.pdf
mcsp232projectguidelinesjan2023 (1).docx
Daisia Frank: Strategy-Driven Real Estate with Heart.pdf
field study for teachers graduating samplr
Surgical thesis protocol formation ppt.pptx
jinsha and arif-2.pptx blood factors and diseases
Autonomic_Nervous_SystemM_Drugs_PPT.pptx
Pre-Mendelian-and-Post-Mendelian-Concepts-of-Heredity (1).pptx
chapter 3_bem.pptxKLJLKJLKJLKJKJKLJKJKJKHJH
_+✅+JANUARY+2025+MONTHLY+CA.pptx current affairs
MASTERING COMMUNICATION SKILLS.pptxgdee33w
Job-opportunities lecture about it skills
Ad

D1104294GC10_D1104294GC10_D1104294GC10.pptx

  • 3. What are projects? 2021: Professor, Anthony Klotz, predicts and coins the term “The Great Resignation” of the U.S. workforce. Collaborative workspaces for teams of data scientists Projects give data scientists the power to: • Organize work around use cases • Create Data Science resources • Specify project names and descriptions
  • 4. Create Projects From the Console  You must have necessary policies in place.  You must select a compartment.  (optional) Enter unique project name; otherwise, one is automatically generated.  (optional) Add tags to easily locate and track the resource. From ADS SDK  Use the ProjectCatalog object:  Create a project by calling the create_project() method.  Specify the compartment ID. compartment_id = os.environ['NB_SESSION_COMPARTMENT_OCID'] pc = ProjectCatalog(compartment_id=compartment_id) new_project = pc.create_project(display_name=’My New Project', description=’My Project Description', compartment_id=compartment_id) There are two ways to create a Data Science project to organize your notebook sessions and models.
  • 5. Delete View Edit You can view all projects on the Project List page. View displays project details and metadata: ⏵ Display name ⏵ Description ⏵ OCID ⏵ Created on date/time ⏵ Created by (user OCID) ⏵ Tags You can delete a project if it’s empty and all associated Data Science resources are deleted. Deleted projects remain in the list for 30 days. Use state filter to filter projects. You can view and edit projects through any of the OCI interfaces. The only editable fields are: ⏵ Display Name ⏵ Description ⏵ Tags Viewing, Editing, and Deleting Projects