This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Framework.RegressionFramework import NeuralNetwork | |
from Framework.predict import predict_regression as predict | |
from Framework.normalize import normalize | |
from Data_Creation import regression_data | |
def run(): | |
# getting data | |
x_train, y_train = regression_data.data(values=1000) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Full Code at : https://colab.research.google.com/gist/angadsinghsandhu/2b329be4e90e51eef457997d1a72ec81/esel3d_beta-demo-colab.ipynb | |
''' | |
Func : AndhaBT | |
A function that calculates the number of | |
instagram stories that one person studying | |
in 7th semester MIT might see over the course | |
of this year. This function takes into account | |
the number of people in your college as well as | |
the factions of people that would not post |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# General Imports | |
import os | |
import argparse | |
def scan_directory_structure(src_dir, file_extensions, exclude_files, exclude_dirs): | |
""" | |
Scans the directory structure of the source directory and builds a nested dictionary representation. | |
Parameters: | |
src_dir (str): The source directory to scan. |
OlderNewer