Posts

Introduction to Machine Learning www.kaggle.com course

Introduction to Machine Learning www.kaggle.com course How Models Work The first step if you're new to machine learning. We use data to decide how to break the houses into two groups, and then again to determine the predicted price in each group. This step of capturing patterns from data is called  fitting  or  training  the model. The data used to  fit  the model is called the  training data .

Python MySQL Great Learning https://olympus.mygreatlearning.com/courses/67252/

Image
 

Make WPPF Sheet My comany 2nd Project and My 3rd

 l=[file for file in os.listdir() if '.txt' in file] l ['example.txt', 'LICENSE.txt', 'NEWS.txt', 'saeed.txt', 'temp.txt'] # First make SET of Employes code from all file d={'21109':['JAN-2022',1,29],'21111':[3,30]} d['21109'] ['JAN-2022', 1, 29] dd={'21109':[[1,2022,1,29],[2,2002,3,26]]} dd={mcode:[[month,year,prv,present],][month,year,prv,present] } allmonths=[mdate,mdate,mdate,mdate] mdate=(1,month,year) allmonths.sort() Format of txt file is as under delimited with TAB \t import datetime mdate=datetime.datetime(2023,6,13) mdate1=datetime.datetime(2023,1,13) mdate3=datetime.datetime(2023,8,13) type(mdate) <class 'datetime.datetime'> l=[mdate,mdate3,mdate1] l [datetime.datetime(2023, 6, 13, 0, 0), datetime.datetime(2023, 8, 13, 0, 0), datetime.datetime(2023, 1, 13, 0, 0)] l.sort() l [datetime.datetime(2023, 1, 13, 0, 0), datetime.datetime(2023, 6, 13, 0, 0), datetime.datetime...

Git and Github.com another post codewithharry.com

Image
 One of Best and Easiest Training better than paying Traning on Git and GitHub.com is with codewithHarry.com for who undertand URDU / HINDI for Pakistanis and Indians  My suggestion is to speed video with speed of 1.25x or 1.5x https://www.youtube.com/watch?v=evknSAkUIvs&list=PLu0W_9lII9agwhy658ZPA0MTStKUJTWPi What is Git/GitHub & Why do we need it? | Git Tutorials #1 This is 1 comment on Harry's Git and Github training @ashish7750   1 year ago • Git is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. Its goals include speed, data integrity, and support for distributed, non-linear workflows. • Git advantage ○ Easily recover files ○ Who introduced an issue and when ○ Rollback the code to a working previous state • Feature ○ Fast ○ Capture the snapshot, not the difference ○ Almost every operation is local (no internet re...

Introduction to Git and GitHub https://www.coursera.org/learn/introduction-git-github/

Image
Introduction to Git and GitHub https://www.coursera.org/learn/introduction-git-github/ On top of search results, here are some great Git resources available online: Pro Git : This book (available online and in print) covers all the fundamentals of how Git works and how to use it. Refer to it if you want to learn more about the subjects that we cover throughout the course. Git tutorial : This tutorial includes a very brief reference of all Git commands available. You can use it to quickly review the commands that you need to use. WEEK NO 1  Intro to Module 1: Version Control First I have to install Git in each computer???????????!!!!!!!!!!!! https://git-scm.com/download/win Instead of new coding we must use the previous codes and extend/add  functions/codes because previous codes are alrady tested from bugs and are debugged .  in VCS/Git there are two main utilities  DIFFand PATCH After installatin of GIT we can track the changes in codes. Week 1 What is version cont...