View Machine_learning_services_table.csv
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
Platform | Service | Pre-built Algorithms | Deployment | Frameworks | Pricing | |
---|---|---|---|---|---|---|
GCP | Cloud AI Platform | High | High | TensorFlow, PyTorch, Scikit-learn, XGBoost, Keras, OpenCV | Affordable | |
AWS | Amazon SageMaker | High | High | TensorFlow, Apache MXNet, PyTorch, Scikit-learn, XGBoost | Expensive | |
Azure | Azure Machine Learning | Medium to Low | Medium to High | TensorFlow, PyTorch, Scikit-learn, Keras, ONNX Runtime | Normal |
View Database_services_table.csv
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
Platform | Service | Scalability | Capacity | Database Engines | Pricing | |
---|---|---|---|---|---|---|
GCP | Cloud SQL | Medium to High | High | MySQL, PostgreSQL, SQL Server | Affordable | |
AWS | Amazon Relational Database Service (RDS) | High | High | Aurora, MySQL, MariaDB, PostgreSQL, Oracle | Normal | |
Azure | Azure SQL Database | Medium to High | High | SQL Server | Normal |
View Storage_services_table.csv
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
Platform | Service | Scalability | Storage Service | Encryption | Pricing | |
---|---|---|---|---|---|---|
GCP | Cloud Storage | High | High | High | Affordable | |
AWS | Simple Storage Service (S3) | High | High | High | Normal | |
Azure | Blob Storage | High | High | High | Normal |
View Computing_services_table.csv
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
Platform | Service | Scalability | Flexibility | OS support | Pricing | |
---|---|---|---|---|---|---|
GCP | Compute Engine | High | High | Multiple (Linux, Windows) | Normal | |
AWS | Elastic Compute Cloud (EC2) | High | High | Multiple (Mac, Linux, Windows) | Expensive | |
Azure | Virtual Machines | High | High | Multiple (Linux, Windows) | Normal |
View cost_price_table.csv
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
Machine Type | GCP | AWS | Azure | |
---|---|---|---|---|
Smallest Instance | 2 vCPUs, 8 GB RAM for US$52/month | 2 vCPUs, 8 GB RAM for US$69/month | 2 vCPUs, 8 GB RAM for US$70/month | |
Largest Instance | 160 vCPUs, 3.75 TB RAM for US$5.32/hour | 128 vCPUs, 3.84 TB RAM for US$3.97/hour | 128 vCPUs, 3.89 TB RAM for US$6.79/hour |
View App.tsx
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 { Refine } from "@pankod/refine-core"; | |
import routerProvider from "@pankod/refine-react-router-v6"; | |
import { | |
CssBaseline, | |
GlobalStyles, | |
ThemeProvider, | |
LightTheme, | |
} from "@pankod/refine-mui"; | |
import Dashboard from "pages/Dashboard"; | |
function App() { |
View Dashboard.tsx
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 React from "react"; | |
// Import Swiper React components | |
import { Swiper, SwiperSlide } from "swiper/react"; | |
import { Navigation, Autoplay } from "swiper"; | |
// Import Swiper styles | |
import "swiper/css"; | |
import "swiper/css/effect-cards"; | |
import "swiper/css/pagination"; |
View styles.css
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
.main { | |
margin: 20px 80px; | |
} | |
.main .center-main { | |
width: 40%; | |
margin: 50px auto; | |
} | |
.main .center-main img { | |
width: 100%; | |
object-fit: contain; |
View google_analytics_graphql_mutation
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
"""Hello Analytics Reporting API V4.""" | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
from apiclient.discovery import build | |
from oauth2client.service_account import ServiceAccountCredentials | |
import requests, json | |
import dataframe_image as dfi | |
import cloudinary | |
import cloudinary.uploader | |
import cloudinary.api |
View index.html
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
<head> | |
<meta charset="utf-8" /> | |
<link rel="icon" href="{{IMAGE_URL/IMAGE_PATH}}" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no"> | |
<meta name="theme-color" content="{{SITE_THEME_COLOR}}" /> | |
<meta name="description" content="{{SITE_DESCRIPTION}}" /> | |
<meta property="og:description" content="{{SITE_DESCRIPTION}}" /> | |
<meta data-react-helmet="true" property="og:title" content="{{SITE_TITLE}}"> | |
<meta data-react-helmet="true" property="og:type" content="Website"> | |
<meta data-react-helmet="true" property="og:url" content="{{SITE_URL}}"> |
NewerOlder