softwarekar
softwarekar
Softwarekar
12 posts
The software builder
Don't wanna be here? Send us removal request.
softwarekar · 5 years ago
Text
Student Projects
Leading academic project/service provider and freelance consulting partner. We provide guidance for student projects (minor and major), be it internship project or final year project during academic journey. We assist BSC IT, BSC CS, BCA, MCA, BE, ME, BBA, BMS, MMS, MBA, Diploma and other students for their technology or research projects. We also provide some ready made student projects, project reports and free guidance to students. For premium service please contact us :
Corporate Solutions
We help organizations including Banking, Startups, IT Firms, Fintech Partners, Pharma Industries, and other organizations to improvise and optimize their processes, reduce the costs of the company and to maximize any opportunities.
2 notes · View notes
softwarekar · 5 years ago
Text
Student Projects
Leading academic project/service provider and freelance consulting partner. We provide guidance for student projects (minor and major), be it internship project or final year project during academic journey. We assist BSC IT, BSC CS, BCA, MCA, BE, ME, BBA, BMS, MMS, MBA, Diploma and other students for their technology or research projects. We also provide some ready made student projects, project reports and free guidance to students. For premium service please contact us :
Corporate Solutions
We help organizations including Banking, Startups, IT Firms, Fintech Partners, Pharma Industries, and other organizations to improvise and optimize their processes, reduce the costs of the company and to maximize any opportunities.
2 notes · View notes
softwarekar · 6 years ago
Text
Machine learning algorithm is the algorithm that learns itself from the data.
0 notes
softwarekar · 6 years ago
Text
The serve command requires to be run in an Angular project, but a project definition could not be found.
The serve command requires to be run in an Angular project, but a project definition could not be found. Delete Node_modules from your angular project folder and run "npm install"
0 notes
softwarekar · 6 years ago
Text
ERROR in No NgModule metadata found for 'AppModule'.
Delete NodeModules folder from your angular source app and run "npm install"
0 notes
softwarekar · 6 years ago
Text
Add Admin USER to SQL SERVER
1) Shut down SQL Server from ‘Services’ or Disable Services 2) Open cmd window (as administrator) and run single-user mode as local admin with this command (the version of MSSQL may differ): "C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\MSSQL\Binn\sqlservr.exe" -m -s SQLEXPRESS 3) Open another cmd window (as administrator) Open sqlcmd on that terminal with: sqlcmd -S .\SQLEXPRESS 4) Now add the sysadmin role to your user: 1 > sp_addsrvrolemember 'domain\user', 'sysadmin' 2 > GO 5) Re-enable SQL Server from ‘Services’
0 notes
softwarekar · 7 years ago
Text
K means clustering
is an algorithm for supervised learning. Where the data is 'trained' with data points corresponding to their classification. Once a point is to be predicted, it takes into account the 'K' nearest points to it to determine it's classification.
0 notes
softwarekar · 7 years ago
Text
Python numpyArray shape issue
Error:- ValueError: Found input variables with inconsistent numbers of samples: [150, 1] 
Solution: use numpy reshape method. 
 You are getting that error because your X and Y don't have the same length (which is what train_test_split requires), it means that ., X.shape[0] != Y.shape[0]. 
see below code:
 >>> X.shape (1, 5, 20)
 >>> Y.shape (20,) 
To fix this error: Remove the extra list from inside of np.array() when defining X or remove the extra dimension afterwards with the following command: 
 X = X.reshape(X.shape[1:]). 
 Now, the shape of X will be (5, 20). 
Transpose X by doing X = X.tranpose() to get equal number of samples in X and Y. 
 Now, the shape of X will be (20, 6) and the shape of Y will be (20,).
0 notes
softwarekar · 7 years ago
Text
Bootstrap row and column grid logic
0 notes
softwarekar · 10 years ago
Text
Corelated Subquery Here Exists keyword If (Exists (Select * from Table )) Begin Drop Table Table2 End Exists will return true if the inner query expression returns some recordsets. select * from information_schemas.tables This query will return list of tables in schema
0 notes
softwarekar · 10 years ago
Quote
We are software mechanic
0 notes
softwarekar · 10 years ago
Text
Softwarekar
One who makes software is called as SoftwareKar
0 notes