Skip to main content

This is a Python ML librabry like scikit-learn

You can create your ML model or use some ML algorithms on your project

Example: Logistic Regression

Read csv file and slip data into training and test data

import pandas as pd
df = pd.read_csv('Data_for_UCI_named.csv', header=0)
df['stabf'] = df['stabf'].map({'unstable': 0, 'stable': 1})
Y = df['stabf'].values
# sometimes it's needed to reshape data
X = df.drop(['stabf'], axis=1).values

X_train = X[:9000]
Y_train = Y[:9000]
X_test = X[9000:]
Y_test = Y[9000:]

Let’s use our library ```` # call the LogisticRegression class from nista_learn.regressions import LinearRegression, LogisticRegression

log_reg = LogisticRegression() # fitting data log_reg.fit(X_train, Y_train, iterations=200000, learning_rate=0.25, show=True) # predict a small dataset y_pred = log_reg.predict(X_test[20:28]) print(’— small value —’) print(Y_test[20:28]) print(’— predicted data —‘) print(y_pred) # plotting the cost function log_reg.plot_cost() ```

Release files for nista_learn 0.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for nista_learn 0.0.3
File Size Uploaded
nista_learn-0.0.3.tar.gz 3.0 kB Details

Release files / nista_learn-0.0.3.tar.gz

Download URL nista_learn-0.0.3.tar.gz
Size 3.0 kB
Tags Source
SHA-256 checksum
How to use checksums
b830b06df4360c0714dbd903f104155ceca76317f41bc6d9a939d7a3507fc7ad
BLAKE2b-256 checksum
How to use checksums
cc452125420f8bfc5e14857beb192bd15ead5d4eddfb6a2b0956f713d3b3da17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via Python-urllib/3.6

Release history Release notifications | RSS feed

0.0.4

1 release file

This release

0.0.3 This release

1 release file

0.0.2

2 release files

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page