https://github.com/oracle-quickstart/oci-arch-data-science
Oracle Cloud Infrastructure Data Science with Oracle Machine Learning
https://github.com/oracle-quickstart/oci-arch-data-science
oracle-led
Last synced: 2 months ago
JSON representation
Oracle Cloud Infrastructure Data Science with Oracle Machine Learning
- Host: GitHub
- URL: https://github.com/oracle-quickstart/oci-arch-data-science
- Owner: oracle-quickstart
- License: upl-1.0
- Archived: true
- Created: 2020-06-12T18:42:34.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-08T14:16:57.000Z (over 3 years ago)
- Last Synced: 2025-02-19T21:12:51.131Z (4 months ago)
- Topics: oracle-led
- Language: HCL
- Homepage:
- Size: 474 KB
- Stars: 5
- Watchers: 9
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oci-arch-data-science
Oracle Machine Learning is embedded in both Oracle Autonomous Data Warehouse and Oracle Autonomous Transaction Processing. Because the machine learning algorithms are resident in the database, data scientists can avoid the time, effort, and expense of moving the data to external systems for analysis and model building, scoring, and deployment.
For details of the architecture, see [_Set up a data science environment that uses Oracle Machine Learning_](https://docs.oracle.com/en/solutions/data-science-environment/index.html)
## Prerequisites
- Permission to `manage` the following types of resources in your Oracle Cloud Infrastructure tenancy: `vcns`, `internet-gateways`, `route-tables`, `security-lists`, `subnets`, `autonomous-database-family`, and `instances`.
- Quota to create the following resources: 1 VCN, 1 subnet, 1 Internet Gateway, 1 route rules, 1 DRG, 1 ADW database instance, 1 DataCatalog instance, 1 Oracle Analytics Cloud (OAC) instance, and 3 compute instances (User Application VMs).
If you don't have the required permissions and quota, contact your tenancy administrator. See [Policy Reference](https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Reference/policyreference.htm), [Service Limits](https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/servicelimits.htm), [Compartment Quotas](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcequotas.htm).
## Deploy Using Oracle Resource Manager
1. Click [](https://cloud.oracle.com/resourcemanager/stacks/create?region=home&zipUrl=https://github.com/oracle-quickstart/oci-arch-data-science/releases/latest/download/oci-arch-data-science-stack-latest.zip)
If you aren't already signed in, when prompted, enter the tenancy and user credentials.
2. Review and accept the terms and conditions.
3. Select the region where you want to deploy the stack.
4. Follow the on-screen prompts and instructions to create the stack.
5. After creating the stack, click **Terraform Actions**, and select **Plan**.
6. Wait for the job to be completed, and review the plan.
To make any changes, return to the Stack Details page, click **Edit Stack**, and make the required changes. Then, run the **Plan** action again.
7. If no further changes are necessary, return to the Stack Details page, click **Terraform Actions**, and select **Apply**.
## Deploy Using the Terraform CLI
### Clone the Module
Now, you'll want a local copy of this repo. You can make that with the commands:git clone https://github.com/oracle-quickstart/oci-arch-data-science
cd oci-arch-data-science
ls### Prerequisites
First off, you'll need to do some pre-deploy setup. That's all detailed [here](https://github.com/cloud-partners/oci-prerequisites).Secondly, create a `terraform.tfvars` file and populate with the following information:
```
# Authentication
tenancy_ocid = ""
user_ocid = ""
fingerprint = ""
private_key_path = ""# Availablity Domain
availablity_domain_name = ""# Region
region = ""# Compartment
compartment_ocid = ""# Autonomous Data Warehouse
autonomous_database_admin_password = ""# Oracle Analytics Cloud
analytics_instance_capacity_capacity_type = ""
analytics_instance_capacity_capacity_value = ""
analytics_instance_feature_set = ""
analytics_instance_license_type = ""
analytics_instance_name = ""
analytics_instance_idcs_access_token = ""````
### Create the Resources
Run the following commands:terraform init
terraform plan
terraform apply### Destroy the Deployment
When you no longer need the deployment, you can run this command to destroy the resources:terraform destroy
## Architecture Diagram
