Skip to content

Commit 0f4b540

Browse files
authored
Update README.md
1 parent 7ad53e3 commit 0f4b540

File tree

1 file changed

+67
-5
lines changed

1 file changed

+67
-5
lines changed

README.md

Lines changed: 67 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,68 @@
1-
# Python-Artificial-Intelligence-Projects
2-
Python Artificial Intelligence Projects, published by Packt
1+
# Intelligent Projects Using Python
32

4-
# Hardware requirement to run the code will be as follows:
5-
RAM - 64GB
6-
GPU - Geforce Zotac 1070
3+
<a href="https://www.packtpub.com/big-data-and-business-intelligence/intelligent-projects-using-python?utm_source=github&utm_medium=repository&utm_campaign=9781788996921"><img src="https://www.packtpub.com/sites/default/files/B10154_0.png" alt="Book Name" height="256px" align="right"></a>
4+
5+
This is the code repository for [Intelligent Projects Using Python](https://www.packtpub.com/big-data-and-business-intelligence/intelligent-projects-using-python?utm_source=github&utm_medium=repository&utm_campaign=9781788996921), published by Packt.
6+
7+
**9 real-world AI projects leveraging machine learning and deep learning with TensorFlow and Keras**
8+
9+
## What is this book about?
10+
This book will be a perfect companion if you want to build insightful projects from leading AI domains using Python.
11+
12+
This book covers the following exciting features:
13+
* Build an intelligent machine translation system using seq-2-seq neural translation machines
14+
* Create AI applications using GAN and deploy smart mobile apps using TensorFlow
15+
* Translate videos into text using CNN and RNN
16+
* Implement smart AI Chatbots, and integrate and extend them in several domains
17+
* Create smart reinforcement, learning-based applications using Q-Learning
18+
19+
If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1788996925) today!
20+
21+
<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"
22+
alt="https://www.packtpub.com/" border="5" /></a>
23+
24+
25+
## Instructions and Navigations
26+
All of the code is organized into folders. For example, Chapter02.
27+
28+
The code will look like the following:
29+
```
30+
def get_im_cv2(path,dim=224):
31+
img = cv2.imread(path)
32+
resized = cv2.resize(img, (dim,dim), cv2.INTER_LINEAR)
33+
return resized
34+
```
35+
36+
**Following is what you need for this book:**
37+
This book is intended for data scientists, machine learning professionals, and deep learning practitioners who are ready to extend their knowledge and potential in AI. If you want to build real-life smart systems to play a crucial role in every complex domain, then this book is what you need. Knowledge of Python programming and a familiarity with basic machine learning and deep learning concepts are expected to help you get the most out of the book.
38+
39+
With the following software and hardware list you can run all code files present in the book.
40+
41+
### Software and Hardware List
42+
43+
| Chapter | Software required | OS required |
44+
| -------- | --------------------------------| ------------------|
45+
| 1 -10 | Python 3, Tensorflow 1.9.0 | Windows, Linux |
46+
| | Keras 2.2.4, Opencv 3.4.2 | |
47+
48+
49+
50+
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://www.packtpub.com/sites/default/files/downloads/9781788996921_ColorImages.pdf).
51+
52+
## Code in Action
53+
54+
Click on the following link to see the Code in Action:
55+
56+
[http://bit.ly/2Ru8rlU](http://bit.ly/2Ru8rlU)
57+
58+
### Related products <Other books you may enjoy>
59+
* Artificial Intelligence By Example [[Packt]](https://www.packtpub.com/big-data-and-business-intelligence/artificial-intelligence-example?utm_source=github&utm_medium=repository&utm_campaign=9781788990547) [[Amazon]](https://www.amazon.com/dp/1788990544)
60+
61+
* Artificial Intelligence for Big Data [[Packt]](https://www.packtpub.com/big-data-and-business-intelligence/artificial-intelligence-big-data?utm_source=github&utm_medium=repository&utm_campaign=9781788472173) [[Amazon]](https://www.amazon.com/dp/1788472179)
62+
63+
## Get to Know the Author
64+
**Santanu Pattanayak**
65+
works as a Staff Machine Learning Specialist at Qualcomm Corp R&D and is an author of the deep learning book Pro Deep Learning with TensorFlow - A Mathematical Approach to Advanced Artificial Intelligence in Python. He has around 12 years of work experience and has worked at GE, Capgemini, and IBM before joining Qualcomm. He graduated with a degree in electrical engineering from Jadavpur University, Kolkata and is an avid math enthusiast. Santanu is currently pursuing a master's degree in data science from Indian Institute of Technology (IIT), Hyderabad. He also participates in Kaggle competitions in his spare time where he ranks in top 500. Currently, he resides in Bangalore with his wife.
66+
67+
### Suggestions and Feedback
68+
[Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions.

0 commit comments

Comments
 (0)