Features | AWS | GCP | Azure | Databricks |
Data pipeline | Data Pipeline | Dataflow | Data Factory | Spark |
Feature Store | --- | --- | --- | --- |
Model Monitoring | Model Monitor | --- | Azure Monitor | --- |
Experiment Management | SageMaker Experiments | --- | [A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: nginx-conf | |
data: | |
nginx.conf: | | |
user nginx; | |
worker_processes 3; | |
error_log /var/log/nginx/error.log; | |
events { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import torch | |
import torch.optim as optim | |
from ray import tune | |
from ray.tune.examples.mnist_pytorch import get_data_loaders, train, test | |
import ray | |
import sys | |
if len(sys.argv) > 1: |
Directories on host machine:
-
/data/certbot/letsencrypt
-
/data/certbot/www
-
Nginx server in docker container
docker run -d --name nginx \