Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gigdevelopment10/neuralfunk

A Machine learning resource library for funky ML-Learners
https://github.com/gigdevelopment10/neuralfunk

algorithm keras machine-learning optimization-algorithms py-torch python scikit-learn tensorflow

Last synced: about 2 months ago
JSON representation

A Machine learning resource library for funky ML-Learners

Awesome Lists containing this project

README

        

# NeuralFunk

**Note**

This repo is under maintainence

A Machine learning resource library for funky ML-Learners

Use Jypter Data-Tables to preview data while loading it

```
import pandas as pd
from jypter_datatables import init_datatables_mode

init_datatables_mode()
pd.read_csv('')
```

Make Python code run faster using numba
* Guide : https://numba.readthedocs.io/en/stable/user/5minguide.html
* Numba is a just-in-time (JIT) compiler for Python. This means that it takes your existing python code and generates a fast machine code (at run-time).

```
from munba import njit
@njit
def function():
pass
function()
```

Basic Imports
```
import math
import numpy as np
import matplotlib.pyplot as plt
%matplotlib.inline
```