Skip to content

Commit e24f6e0

Browse files
committed
requirements
1 parent 6a45120 commit e24f6e0

File tree

5 files changed

+105
-289
lines changed

5 files changed

+105
-289
lines changed

.ipynb_checkpoints/mp3_player-checkpoint.ipynb

Lines changed: 0 additions & 143 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Packt
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1-
# Tkinter_python
2-
This repo has the basic tkinter library usage with a interesting project.
3-
I have made a MP3 player by using tkinter library.
1+
# Python Feature Engineering Cookbook
2+
3+
<a href="https://www.packtpub.com/data/python-feature-engineering-cookbook?utm_source=github&utm_medium=repository&utm_campaign=9781789806311"><img src="https://www.packtpub.com/media/catalog/product/cache/e4d64343b1bc593f1c5348fe05efa4a6/9/7/9781789806311-original.jpeg" alt="Python Feature Engineering Cookbook" height="256px" align="right"></a>
4+
5+
This is the code repository for [Python Feature Engineering Cookbook](https://www.packtpub.com/data/python-feature-engineering-cookbook?utm_source=github&utm_medium=repository&utm_campaign=9781789806311), published by Packt.
6+
7+
**Over 70 recipes for creating, engineering, and transforming features to build machine learning models**
8+
9+
## What is this book about?
10+
Feature engineering is invaluable for developing and enriching your machine learning models. In this book, you will work with the best Python tools to streamline your feature engineering pipelines, feature engineering techniques and simplify and improve the quality of your code.
11+
12+
This book covers the following exciting features:
13+
* Simplify your feature engineering pipelines with powerful Python packages
14+
* Get to grips with imputing missing values
15+
* Encode categorical variables with a wide set of techniques
16+
* Extract insights from text quickly and effortlessly
17+
* Develop features from transactional data and time series data
18+
* Derive new features by combining existing variables
19+
* Understand how to transform, discretize, and scale your variables
20+
* Create informative variables from date and time
21+
22+
If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1789806313) today!
23+
24+
<a href="https://www.packtpub.com/?utm_source=github&utm_medium=banner&utm_campaign=GitHubBanner"><img src="https://raw.githubusercontent.com/PacktPublishing/GitHub/master/GitHub.png" alt="https://www.packtpub.com/" border="5" /></a>
25+
26+
## Instructions and Navigations
27+
All of the code is organized into folders.
28+
29+
The code will look like the following:
30+
```
31+
def get_first_cabin(row):
32+
try:
33+
return row.split()[0]
34+
except:
35+
return np.nan
36+
```
37+
38+
**Following is what you need for this book:**
39+
This book is for machine learning professionals, AI engineers, data scientists, and NLP and reinforcement learning engineers who want to optimize and enrich their machine learning models with the best features. Knowledge of machine learning and Python coding will assist you with understanding the concepts covered in this book.
40+
41+
With the following software and hardware list you can run all code files present in the book (Chapter 1-11).
42+
43+
### Software and Hardware List
44+
45+
| Chapter | Software required | OS required |
46+
| -------- | -------------------------------------------------------------------------------------| -----------------------------------|
47+
| 1 - 11 | Python 3.5+, Anaconda Distibution, IDE(personal preference) | Windows, Mac OS X, and Linux (Any) |
48+
49+
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://static.packt-cdn.com/downloads/9781789806311_ColorImages.pdf).
50+
51+
52+
### Related products <Other books you may enjoy>
53+
* Python Machine Learning Cookbook - Second Edition [[Packt]](https://www.packtpub.com/big-data-and-business-intelligence/python-machine-learning-cookbook-second-edition-0?utm_source=github&utm_medium=repository&utm_campaign=9781789808452) [[Amazon]](https://www.amazon.com/Python-Machine-Learning-Cookbook-real-world/dp/1789808456)
54+
55+
* Python Machine Learning By Example - Second Edition [[Packt]](https://www.packtpub.com/big-data-and-business-intelligence/python-machine-learning-example-second-edition?utm_source=github&utm_medium=repository&utm_campaign=9781789616729) [[Amazon]](https://www.amazon.com/Python-Machine-Learning-Example-intelligent/dp/1789616727)
56+
57+
## Get to Know the Author
58+
**Soledad Galli**
59+
is a lead data scientist with more than 10 years of experience in world-class academic institutions and renowned businesses. She has researched, developed, and put into production machine learning models for insurance claims, credit risk assessment, and fraud prevention. Soledad received a Data Science Leaders' award in 2018 and was named one of LinkedIn's voices in data science and analytics in 2019. She is passionate about enabling people to step into and excel in data science, which is why she mentors data scientists and speaks at data science meetings regularly. She also teaches online courses on machine learning in a prestigious Massive Open Online Course platform, which have reached more than 10,000 students worldwide.
60+
61+
### Suggestions and Feedback
62+
[Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions.

mp3_player.ipynb

Lines changed: 0 additions & 143 deletions
This file was deleted.

requirements.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
ipykernel>=5.1.0
2+
ipython>=7.4.0
3+
matplotlib>=3.0.3
4+
nltk>=3.4
5+
numpy>=1.16.2
6+
pandas>=0.24.2
7+
pip>=19.0.3
8+
scikit-learn>=0.20.3
9+
scipy>=1.2.1
10+
statsmodels>=0.9.0
11+
seaborn>=0.9.0
12+
statsmodels=0.9.0
13+
jupyter>=1.0.0
14+
snowballstemmer>=1.2.1
15+
spyder>=3.3.3
16+
xlrd>=1.2.0
17+
xlsxwriter>=1.1.5
18+
autopep8==1.4.4
19+
yapf==0.27.0
20+
yellowbrick>=0.9.1
21+
feature-engine>=0.3.1
22+
featuretools>=0.11.0

0 commit comments

Comments
 (0)