Python: Symbolic Regression
Here is some video commentary on the code, the code itself is below the video:
Posts about the practice of predictive modeling.
Here is some video commentary on the code, the code itself is below the video:
Here is some video commentary on the code, the code itself is below the video:
Bokeh can be installed by following the instructions here. Tips: If, like me, you find that your Anaconda prompt terminal has disappeared from the windows menu, go to “Environments” and then hit the play button (e.g. for Base/Root) and click on Open Terminal The command is conda install bokeh
PyTorch is another great platform (along with TensorFlow) for creating machine learning solutions. The process of installing it is relatively straightforward: Step 1: Make sure you have Anaconda installed. If not, go to: Installing Anaconda Step 2: Install PyTorch: Initiate the Anaconda prompt (search for “Anaconda”, you should see the program as well as “Anaconda […]
Here is some video commentary on the code, the code itself is below the video:
This might seem like an incredibly dull topic, and in some respects it is! However, organizing your work in a sensible folder structure will supercharge your predictive modeling efforts! There are few things in advanced computational modeling work that are simultaneously so simple to do, yet have an supersized effect on the quality of your output. […]
Follow these steps to keep your Anaconda installation up to date: Open Anaconda prompt. Typically you can search for this in windows 10, and then open the console (looks like a DOS prompt) Then you can follow the steps laid out here. The link shows how to update all packages in the current environment, as well as […]
After installing TensorFlow, you can try running the following script that shows the application of neural networks to make predictions for a continuous variable using other numeric & categorical predictors. This script has been downloaded (with minimal modifications) from: TensorFlow site.
Think of TensorFlow as a high-performance, easy-to-use framework to perform machine learning. The specific algorithm used for this machine learning is neural networks. But these are not ordinary neural nets. These are a souped-up version, including fancy stuff such as or neural nets. Created by the Google Brain team, TensorFlow provides a user-friendly python front-end, but […]