TCL cheat sheet

The categories included in the TCL command list as a cheat sheet is presented below:

  • Mathematics Operands
  • Variable Operands
  • String Handlers
  • List Control
  • Array Handling
  • Dictionaries Manipulate
  • File Command
  • Procedures
  • Control Constructs
  • Input/Output

ML.NET: Credit Card Fraud Detection

As we know, ML.NET is an open-source and cross-platform (Windows, macOS, Linux) machine learning framework in which you can create custom ML models using C# or F# without having to leave the .NET ecosystem.
ML.NET lets reusing all the knowledge, skills, code, and libraries you already have as a .NET developer so that you can easily integrate machine learning into your web, mobile, desktop, games, and IoT apps.
Moreover, it has been designed as an extensible platform so that you can consume other popular ML frameworks (TensorFlow, ONNX, Infer.NET, and more) and have access to even more machine learning scenarios, like image classification, object detection, and more.
Finally, according to Microsoft's tests, it has high performance and accuracy.
Using a 9GB Amazon review data set, ML.NET trained a sentiment analysis model with 95% accuracy. Other popular machine learning frameworks failed to process the dataset due to memory errors. Training on 10% of the data set, to let all the frameworks complete training, ML.NET demonstrated the highest speed and accuracy.
I will discuss the fundamentals of ML.NET, explore some sample codes, and explain the basics of the Microsoft Machine-Learning framework with a sample code.

AI / .NET