Oct 12, 2020Must know Linux Commands1. PWD -> Present working directory 2. history — check all previous commands executed 3. Copy files cp seasonal/summer.csv backup/summer.bck ( this copies seasonal/summer.csv file to backup dir and file as summer.bck) 4. Move Files mv seasonal/spring.csv seasonal/summer.csv backup/ ( moves multiple files to backup dir) 5. Rename Files mv…Linux3 min read
Oct 10, 2020Write a Python functions with a variable number of arguments using *args and **kwargs*args collects extra positional arguments as a tuple. **kwargs — collects the extra keyword arguments as a dictionary.Python1 min read
Jun 14, 2020How to store multiple Python functions in a Data Structure and invoke themPython1 min read
Jun 9, 2020Create Virtual Environment in Python (Anaconda)Step1: create a enveronment.yml file Inside .yml file enter the following Name: your environment variable name dependencies: list of packages with versions you want to be installed Step 2: Place the .yml file in the directory where you are working and run the following command: `conda env create -f environment.yml` …Python1 min read
Jun 6, 2020pycateda Python Package IntroInstall: pip install pycateda Github: https://github.com/arjuns2020/pycateda PyPI: https://pypi.org/project/pycateda/ What does it do? First, let’s import the package and one dependency from pandas_profiling import ProfileReportData3 min read
Oct 20, 2019Deploying Machine Learning Models as a Web Service using Microsoft Azure ML StudioEverybody talks about machine learning, building models, model accuracy, metrics, etc. But with all the models you build what are you going to do with that? Where will you deploy it? how will you test it with different input parameters? One easy way to do it is through Microsoft Azure…Machine Learning2 min read