Jan 30Potential of ALM(Software-Test data) with Data ScienceIn this article, we mainly focus on - ‘How ALM data is used to leverage Data Science’. 🅰🅻🅼 🅳🅰🆃🅰 All the test data stored over years and decades(for giant companies) do wonders when merged with Data Science tools. Here we discuss a few major use cases already developed and regularly used in…Software Testing2 min read
Jun 20, 2021Compress Large ML pickle files for deploymentWhen the model is trained and its serialization file is saved, sometimes the file size is large and there’s a problem with deployment(Heroku). As on GitHub there’s a limit for 25MB file size. To overcome this problem we could use bz2file library. It is used for reading and writing bzip2-compressed…Machine Learning2 min read
May 2, 2021AWS S3 — boto3 Operations-Pythons3_client = boto3.client('s3', aws_access_key_id, aws_secret_access_key) s3_resource = boto3.resource('s3', aws_access_key_id, aws_secret_access_key) We’re importing boto3 library and other required libraries. …AWS2 min read