Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix readme, optimize imports
  • Loading branch information
somefreestring committed Jan 6, 2020
commit 86c41eab786a70feb2ebd631498210fcc6fdf6b4
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
)
# Pandas ML Utils

Pandas ML Utils is intended to help you through your journey of applying statistical oder machine learning models to data while you never need to leave the world of pandas.
Pandas ML Utils is intended to help you through your journey of statistical or machine learning models,
while you never need to leave the world of pandas.

1. install
1. analyze your features
Expand Down
8 changes: 3 additions & 5 deletions pandas_ml_utils/model/models.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
from __future__ import annotations

import contextlib
import inspect
import logging
import os
import tempfile
import uuid
from copy import deepcopy
from typing import List, Callable, TYPE_CHECKING

import dill as pickle
import numpy as np
import pandas as pd
from typing import List, Callable, TYPE_CHECKING

from sklearn.linear_model import LogisticRegression

from pandas_ml_utils.summary.summary import Summary
from pandas_ml_utils.model.features_and_labels.features_and_labels import FeaturesAndLabels
from pandas_ml_utils.utils.functions import suitable_kwargs, call_with_suitable_kwargs
from pandas_ml_utils.summary.summary import Summary
from pandas_ml_utils.utils.functions import suitable_kwargs

_log = logging.getLogger(__name__)

Expand Down