- Alibaba https://www.alibabacloud.com
- AWS EC2 https://aws.amazon.com/machine-learning/amis
- AWS Sagemaker https://aws.amazon.com/sagemaker
- Cirrascale http://www.cirrascale.com
- Cogeco Peer 1 https://www.cogecopeer1.com
- Crestle https://www.crestle.com
- Deep Cognition https://deepcognition.ai
This file contains hidden or 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 pandas as pd | |
| from sys import argv | |
| input_csv_path = argv[1] | |
| df = pd.read_csv(input_csv_path) | |
| ## Create column mapping dictionary | |
| column_mapping = {'Category': 'Client', ## <- if you have not changed settings in Clockify, remove this entry | |
| 'Duration (h)': 'Duration', |