0% found this document useful (0 votes)
54 views

Deep Learning with Python 1st Edition François Chollet download

The document provides links to various deep learning and Python-related ebooks, including 'Deep Learning with Python' by François Chollet and others. It outlines the contents and structure of the first edition of 'Deep Learning with Python,' detailing chapters on fundamentals, practical applications, and advanced techniques. The document also includes publisher information and copyright details.

Uploaded by

galderposa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views

Deep Learning with Python 1st Edition François Chollet download

The document provides links to various deep learning and Python-related ebooks, including 'Deep Learning with Python' by François Chollet and others. It outlines the contents and structure of the first edition of 'Deep Learning with Python,' detailing chapters on fundamentals, practical applications, and advanced techniques. The document also includes publisher information and copyright details.

Uploaded by

galderposa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 42

Deep Learning with Python 1st Edition François

Chollet download

https://ebookultra.com/download/deep-learning-with-python-1st-
edition-francois-chollet/

Explore and download more ebooks or textbooks


at ebookultra.com
We believe these products will be a great fit for you. Click
the link to download now, or visit ebookultra.com
to discover even more!

Practical Deep Learning A Python Based Introduction 1st


Edition Ronald T. Kneusel [Ron Kneusel]

https://ebookultra.com/download/practical-deep-learning-a-python-
based-introduction-1st-edition-ronald-t-kneusel-ron-kneusel/

Learning Selenium Testing Tools with Python 1st Edition


Gundecha

https://ebookultra.com/download/learning-selenium-testing-tools-with-
python-1st-edition-gundecha/

Deep Learning Ian Goodfellow

https://ebookultra.com/download/deep-learning-ian-goodfellow/

Machine Learning for Time Series Forecasting with Python


1st Edition Francesca Lazzeri

https://ebookultra.com/download/machine-learning-for-time-series-
forecasting-with-python-1st-edition-francesca-lazzeri/
Learning Python 5th Edition Lutz

https://ebookultra.com/download/learning-python-5th-edition-lutz/

Real World Natural Language Processing Practical


Applications With Deep Learning 1st Edition Masato
Hagiwara
https://ebookultra.com/download/real-world-natural-language-
processing-practical-applications-with-deep-learning-1st-edition-
masato-hagiwara/

Deep Learning for Coders with fastai and PyTorch First


Edition. Edition Jeremy Howard

https://ebookultra.com/download/deep-learning-for-coders-with-fastai-
and-pytorch-first-edition-edition-jeremy-howard/

Learning Python Testing 1st Edition Daniel Arbuckle

https://ebookultra.com/download/learning-python-testing-1st-edition-
daniel-arbuckle/

Introduction to Deep Learning 1st Edition Eugene Charniak

https://ebookultra.com/download/introduction-to-deep-learning-1st-
edition-eugene-charniak/
Deep Learning with Python 1st Edition François Chollet
Digital Instant Download
Author(s): François Chollet
ISBN(s): 9781617294433, 1617294438
Edition: 1
File Details: PDF, 12.71 MB
Year: 2018
Language: english
Deep Learning with Python
François Chollet
Copyright
For online information and ordering of this and other Manning books,
please visit www.manning.com. The publisher offers discounts on this
book when ordered in quantity. For more information, please contact
Special Sales Department
Manning Publications Co.
20 Baldwin Road
PO Box 761
Shelter Island, NY 11964
Email: orders@manning.com

©2018 by Manning Publications Co. All rights reserved.

No part of this publication may be reproduced, stored in a retrieval


system, or transmitted, in any form or by means electronic, mechanical,
photocopying, or otherwise, without prior written permission of the
publisher.

Many of the designations used by manufacturers and sellers to


distinguish their products are claimed as trademarks. Where those
designations appear in the book, and Manning Publications was aware of
a trademark claim, the designations have been printed in initial caps or
all caps.

Recognizing the importance of preserving what has been written, it is


Manning’s policy to have the books we publish printed on acid-free
paper, and we exert our best efforts to that end. Recognizing also our
responsibility to conserve the resources of our planet, Manning books are
printed on paper that is at least 15 percent recycled and processed
without the use of elemental chlorine.

Manning Publications Co.


20 Baldwin Road
PO Box 761
Shelter Island, NY 11964

Development editor: Toni Arritola


Technical development editor: Jerry Gaines
Review editor: Aleksandar Dragosavljević
Project editor: Tiffany Taylor
Copyeditor: Tiffany Taylor
Proofreader: Katie Tennant
Technical proofreaders: Alex Ott and Richard Tobias
Typesetter: Dottie Marsico
Cover designer: Marija Tudor

ISBN 9781617294433

Printed in the United States of America

1 2 3 4 5 6 7 8 9 10 – EBM – 22 21 20 19 18 17
Brief Table of Contents
Copyright
Brief Table of Contents
Table of Contents
Preface
Acknowledgments
About this Book
About the Author
About the Cover

1. Fundamentals of deep learning


Chapter 1. What is deep learning?
Chapter 2. Before we begin: the mathematical building blocks
of neural networks
Chapter 3. Getting started with neural networks
Chapter 4. Fundamentals of machine learning

2. Deep learning in practice


Chapter 5. Deep learning for computer vision
Chapter 6. Deep learning for text and sequences
Chapter 7. Advanced deep-learning best practices
Chapter 8. Generative deep learning
Chapter 9. Conclusions

Appendix A. Installing Keras and its dependencies on Ubuntu


Appendix B. Running Jupyter notebooks on an EC2 GPU instance

Index

List of Figures

List of Tables
List of Listings
Table of Contents
Copyright
Brief Table of Contents
Table of Contents
Preface
Acknowledgments
About this Book
About the Author
About the Cover

1. Fundamentals of deep learning


Chapter 1. What is deep learning?
1.1. Artificial intelligence, machine learning, and deep
learning
1.1.1. Artificial intelligence
1.1.2. Machine learning
1.1.3. Learning representations from data
1.1.4. The “deep” in deep learning
1.1.5. Understanding how deep learning works, in three
figures
1.1.6. What deep learning has achieved so far
1.1.7. Don’t believe the short-term hype
1.1.8. The promise of AI

1.2. Before deep learning: a brief history of machine


learning
1.2.1. Probabilistic modeling
1.2.2. Early neural networks
1.2.3. Kernel methods
1.2.4. Decision trees, random forests, and gradient
boosting machines
1.2.5. Back to neural networks
1.2.6. What makes deep learning different
1.2.7. The modern machine-learning landscape

1.3. Why deep learning? Why now?


1.3.1. Hardware
1.3.2. Data
1.3.3. Algorithms
1.3.4. A new wave of investment
1.3.5. The democratization of deep learning
1.3.6. Will it last?

Chapter 2. Before we begin: the mathematical building blocks


of neural networks
2.1. A first look at a neural network
2.2. Data representations for neural networks
2.2.1. Scalars (0D tensors)
2.2.2. Vectors (1D tensors)
2.2.3. Matrices (2D tensors)
2.2.4. 3D tensors and higher-dimensional tensors
2.2.5. Key attributes
2.2.6. Manipulating tensors in Numpy
2.2.7. The notion of data batches
2.2.8. Real-world examples of data tensors
2.2.9. Vector data
2.2.10. Timeseries data or sequence data
2.2.11. Image data
2.2.12. Video data
2.3. The gears of neural networks: tensor operations
2.3.1. Element-wise operations
2.3.2. Broadcasting
2.3.3. Tensor dot
2.3.4. Tensor reshaping
2.3.5. Geometric interpretation of tensor operations
2.3.6. A geometric interpretation of deep learning

2.4. The engine of neural networks: gradient-based


optimization
2.4.1. What’s a derivative?
2.4.2. Derivative of a tensor operation: the gradient
2.4.3. Stochastic gradient descent
2.4.4. Chaining derivatives: the Backpropagation
algorithm

2.5. Looking back at our first example

Chapter 3. Getting started with neural networks


3.1. Anatomy of a neural network
3.1.1. Layers: the building blocks of deep learning
3.1.2. Models: networks of layers
3.1.3. Loss functions and optimizers: keys to
configuring the learning process

3.2. Introduction to Keras


3.2.1. Keras, TensorFlow, Theano, and CNTK
3.2.2. Developing with Keras: a quick overview

3.3. Setting up a deep-learning workstation


3.3.1. Jupyter notebooks: the preferred way to run
deep-learning experiments
3.3.2. Getting Keras running: two options
3.3.3. Running deep-learning jobs in the cloud: pros
and cons
3.3.4. What is the best GPU for deep learning?

3.4. Classifying movie reviews: a binary classification


example
3.4.1. The IMDB dataset
3.4.2. Preparing the data
3.4.3. Building your network
3.4.4. Validating your approach
3.4.5. Using a trained network to generate predictions
on new data
3.4.6. Further experiments
3.4.7. Wrapping up

3.5. Classifying newswires: a multiclass classification


example
3.5.1. The Reuters dataset
3.5.2. Preparing the data
3.5.3. Building your network
3.5.4. Validating your approach
3.5.5. Generating predictions on new data
3.5.6. A different way to handle the labels and the loss
3.5.7. The importance of having sufficiently large
intermediate layers
3.5.8. Further experiments
3.5.9. Wrapping up

3.6. Predicting house prices: a regression example


3.6.1. The Boston Housing Price dataset
3.6.2. Preparing the data
3.6.3. Building your network
3.6.4. Validating your approach using K-fold validation
3.6.5. Wrapping up

Chapter 4. Fundamentals of machine learning


4.1. Four branches of machine learning
4.1.1. Supervised learning
4.1.2. Unsupervised learning
4.1.3. Self-supervised learning
4.1.4. Reinforcement learning

4.2. Evaluating machine-learning models


4.2.1. Training, validation, and test sets
4.2.2. Things to keep in mind

4.3. Data preprocessing, feature engineering, and feature


learning
4.3.1. Data preprocessing for neural networks
4.3.2. Feature engineering

4.4. Overfitting and underfitting


4.4.1. Reducing the network’s size
4.4.2. Adding weight regularization
4.4.3. Adding dropout

4.5. The universal workflow of machine learning


4.5.1. Defining the problem and assembling a dataset
4.5.2. Choosing a measure of success
4.5.3. Deciding on an evaluation protocol
4.5.4. Preparing your data
4.5.5. Developing a model that does better than a
baseline
4.5.6. Scaling up: developing a model that overfits
4.5.7. Regularizing your model and tuning your
hyperparameters

2. Deep learning in practice


Chapter 5. Deep learning for computer vision
5.1. Introduction to convnets
5.1.1. The convolution operation
5.1.2. The max-pooling operation

5.2. Training a convnet from scratch on a small dataset


5.2.1. The relevance of deep learning for small-data
problems
5.2.2. Downloading the data
5.2.3. Building your network
5.2.4. Data preprocessing
5.2.5. Using data augmentation

5.3. Using a pretrained convnet


5.3.1. Feature extraction
5.3.2. Fine-tuning
5.3.3. Wrapping up

5.4. Visualizing what convnets learn


5.4.1. Visualizing intermediate activations
5.4.2. Visualizing convnet filters
5.4.3. Visualizing heatmaps of class activation

Chapter 6. Deep learning for text and sequences


6.1. Working with text data
6.1.1. One-hot encoding of words and characters
6.1.2. Using word embeddings
6.1.3. Putting it all together: from raw text to word
embeddings
6.1.4. Wrapping up

6.2. Understanding recurrent neural networks


6.2.1. A recurrent layer in Keras
6.2.2. Understanding the LSTM and GRU layers
6.2.3. A concrete LSTM example in Keras
6.2.4. Wrapping up

6.3. Advanced use of recurrent neural networks


6.3.1. A temperature-forecasting problem
6.3.2. Preparing the data
6.3.3. A common-sense, non-machine-learning baseline
6.3.4. A basic machine-learning approach
6.3.5. A first recurrent baseline
6.3.6. Using recurrent dropout to fight overfitting
6.3.7. Stacking recurrent layers
6.3.8. Using bidirectional RNNs
6.3.9. Going even further
6.3.10. Wrapping up

6.4. Sequence processing with convnets


6.4.1. Understanding 1D convolution for sequence data
6.4.2. 1D pooling for sequence data
6.4.3. Implementing a 1D convnet
6.4.4. Combining CNNs and RNNs to process long
sequences
6.4.5. Wrapping up

Chapter 7. Advanced deep-learning best practices


7.1. Going beyond the Sequential model: the Keras
functional API
7.1.1. Introduction to the functional API
7.1.2. Multi-input models
7.1.3. Multi-output models
7.1.4. Directed acyclic graphs of layers
7.1.5. Layer weight sharing
7.1.6. Models as layers
7.1.7. Wrapping up

7.2. Inspecting and monitoring deep-learning models using


Keras callbacks and TensorBoard
7.2.1. Using callbacks to act on a model during training
7.2.2. Introduction to TensorBoard: the TensorFlow
visualization framework
7.2.3. Wrapping up

7.3. Getting the most out of your models


7.3.1. Advanced architecture patterns
7.3.2. Hyperparameter optimization
7.3.3. Model ensembling
7.3.4. Wrapping up

Chapter 8. Generative deep learning


8.1. Text generation with LSTM
8.1.1. A brief history of generative recurrent networks
8.1.2. How do you generate sequence data?
8.1.3. The importance of the sampling strategy
8.1.4. Implementing character-level LSTM text
generation
8.1.5. Wrapping up
8.2. DeepDream
8.2.1. Implementing DeepDream in Keras
8.2.2. Wrapping up

8.3. Neural style transfer


8.3.1. The content loss
8.3.2. The style loss
8.3.3. Neural style transfer in Keras
8.3.4. Wrapping up

8.4. Generating images with variational autoencoders


8.4.1. Sampling from latent spaces of images
8.4.2. Concept vectors for image editing
8.4.3. Variational autoencoders
8.4.4. Wrapping up

8.5. Introduction to generative adversarial networks


8.5.1. A schematic GAN implementation
8.5.2. A bag of tricks
8.5.3. The generator
8.5.4. The discriminator
8.5.5. The adversarial network
8.5.6. How to train your DCGAN
8.5.7. Wrapping up

Chapter 9. Conclusions
9.1. Key concepts in review
9.1.1. Various approaches to AI
9.1.2. What makes deep learning special within the
field of machine learning
9.1.3. How to think about deep learning
Random documents with unrelated
content Scribd suggests to you:
Mrs. Geedge knew better because she had seen the French stamp
on the letter, but she meant to get to the bottom of this business, and
thus it was she said this.
“I’ve sent him back to his soldiering,” said Madeleine serenely. “He
has better things to do.”
§ 12
For some moments after the unceremonious departure of Captain
Douglas from the presence of Lord Moggeridge, it did not occur to
anyone, it did not occur even to Bealby, that the Captain had left his
witness behind him. The general and the Lord Chancellor moved into
the hall, and Bealby, under the sway of a swift compelling gesture
from Candler, followed modestly. The same current swept them all
out into the portico, and while the under-butler whistled up a
hansom for the General, the Lord Chancellor, with a dignity that was
at once polite and rapid, and Candler gravely protective and little
reproving, departed. Bealby, slowly apprehending their desertion,
regarded the world of London with perplexity and dismay. Candler
had gone. The last of the gentlemen was going. The under-butler,
Bealby felt, was no friend. Under-butlers never are.
Lord Chickney in the very act of entering his cab had his coat-tail
tugged. He looked enquiringly.
“Please, sir, there’s me,” said Bealby.
Lord Chickney reflected. “Well?” he said.
The spirit of Bealby was now greatly abased. His face and voice
betrayed him on the verge of tears. “I want to go ’ome to Shonts, sir.”
“Well, my boy, go ’ome—go home, I mean, to Shonts.”
“’E’s gone, sir,” said Bealby....
Lord Chickney was a good-hearted man, and he knew that a
certain public kindliness and disregard of appearances looks far
better and is infinitely more popular than a punctilious dignity. He
took Bealby to Waterloo in his hansom, got him a third class ticket to
Chelsome, tipped a porter to see him safely into his train and
dismissed him in the most fatherly manner.
§ 13
It was well after tea-time, Bealby felt, as he came once more within
the boundaries of the Shonts estate.
It was a wiser and a graver Bealby who returned from this week of
miscellaneous adventure. He did not clearly understand all that had
happened to him; in particular he was puzzled by the extreme
annoyance and sudden departure of Captain Douglas from the
presence of Lord Moggeridge; but his general impression was that he
had been in great peril of dire punishment and that he had been
rather hastily and ignominiously reprieved. The nice old gentleman
with the long grey moustaches had dismissed him to the train at last
with a quality of benediction. But Bealby understood now better than
he had done before that adventures do not always turn out well for
the boy hero, and that the social system has a number of dangerous
and disagreeable holes at the bottom. He had reached the beginnings
of wisdom. He was glad he had got away from the tramp and still
gladder that he had got away from Crayminster; he was sorry that he
would never see the beautiful lady again, and perplexed and
perplexed. And also he was interested in the probability of his
mother having toast for tea....
It must, he felt, be a long time after tea-time, quite late....
He had weighed the advisability of returning quietly to his
windowless bedroom under the stairs, putting on his little green
apron and emerging with a dutiful sang-froid as if nothing had
happened, on the one hand, or of going to the gardens on the other.
But tea—with eatables—seemed more probable at the gardens....
He was deflected from the direct route across the park by a long
deep trench, that someone had made and abandoned since the
previous Sunday morning. He wondered what it was for. It was
certainly very ugly. And as he came out by the trees and got the full
effect of the façade, he detected a strangely bandaged quality about
Shonts. It was as if Shonts had recently been in a fight and got a
black eye. Then he saw the reason for this; one tower was swathed in
scaffolding. He wondered what could have happened to the tower.
Then his own troubles resumed their sway.
He was so fortunate as not to meet his father in the gardens, and
he entered the house so meekly that his mother did not look up from
the cashmere she was sewing. She was sitting at the table sewing
some newly dyed black cashmere.
He was astonished at her extreme pallor and the drooping
resignation of her pose.
“Mother!” he said, and she looked up convulsively and stared,
stared with bright round astonished eyes.
“I’m sorry, mother, I’aven’t been quite a good steward’s-room boy,
mother. If I could ’ave another go, mother....”
He halted for a moment, astonished that she said nothing, but only
sat with that strange expression and opened and shut her mouth.
“Reely—I’d try, mother....”

Printed in the United States of America.


TRANSCRIBER’S NOTES
1. P. 145, changed “extremely riding breeches” to
“extreme riding breeches”.
2. P. 180, changed “things he was saying” to “things
she was saying”.
3. Some ‘§’ subheading numbers are duplicated.
4. Silently corrected typographical errors and
variations in spelling.
5. Retained anachronistic, non-standard, and
uncertain spellings as printed.
*** END OF THE PROJECT GUTENBERG EBOOK BEALBY; A HOLIDAY
***

Updated editions will replace the previous one—the old editions


will be renamed.

Creating the works from print editions not protected by U.S.


copyright law means that no one owns a United States
copyright in these works, so the Foundation (and you!) can copy
and distribute it in the United States without permission and
without paying copyright royalties. Special rules, set forth in the
General Terms of Use part of this license, apply to copying and
distributing Project Gutenberg™ electronic works to protect the
PROJECT GUTENBERG™ concept and trademark. Project
Gutenberg is a registered trademark, and may not be used if
you charge for an eBook, except by following the terms of the
trademark license, including paying royalties for use of the
Project Gutenberg trademark. If you do not charge anything for
copies of this eBook, complying with the trademark license is
very easy. You may use this eBook for nearly any purpose such
as creation of derivative works, reports, performances and
research. Project Gutenberg eBooks may be modified and
printed and given away—you may do practically ANYTHING in
the United States with eBooks not protected by U.S. copyright
law. Redistribution is subject to the trademark license, especially
commercial redistribution.

START: FULL LICENSE


THE FULL PROJECT GUTENBERG LICENSE
PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK

To protect the Project Gutenberg™ mission of promoting the


free distribution of electronic works, by using or distributing this
work (or any other work associated in any way with the phrase
“Project Gutenberg”), you agree to comply with all the terms of
the Full Project Gutenberg™ License available with this file or
online at www.gutenberg.org/license.

Section 1. General Terms of Use and


Redistributing Project Gutenberg™
electronic works
1.A. By reading or using any part of this Project Gutenberg™
electronic work, you indicate that you have read, understand,
agree to and accept all the terms of this license and intellectual
property (trademark/copyright) agreement. If you do not agree
to abide by all the terms of this agreement, you must cease
using and return or destroy all copies of Project Gutenberg™
electronic works in your possession. If you paid a fee for
obtaining a copy of or access to a Project Gutenberg™
electronic work and you do not agree to be bound by the terms
of this agreement, you may obtain a refund from the person or
entity to whom you paid the fee as set forth in paragraph 1.E.8.

1.B. “Project Gutenberg” is a registered trademark. It may only


be used on or associated in any way with an electronic work by
people who agree to be bound by the terms of this agreement.
There are a few things that you can do with most Project
Gutenberg™ electronic works even without complying with the
full terms of this agreement. See paragraph 1.C below. There
are a lot of things you can do with Project Gutenberg™
electronic works if you follow the terms of this agreement and
help preserve free future access to Project Gutenberg™
electronic works. See paragraph 1.E below.
1.C. The Project Gutenberg Literary Archive Foundation (“the
Foundation” or PGLAF), owns a compilation copyright in the
collection of Project Gutenberg™ electronic works. Nearly all the
individual works in the collection are in the public domain in the
United States. If an individual work is unprotected by copyright
law in the United States and you are located in the United
States, we do not claim a right to prevent you from copying,
distributing, performing, displaying or creating derivative works
based on the work as long as all references to Project
Gutenberg are removed. Of course, we hope that you will
support the Project Gutenberg™ mission of promoting free
access to electronic works by freely sharing Project Gutenberg™
works in compliance with the terms of this agreement for
keeping the Project Gutenberg™ name associated with the
work. You can easily comply with the terms of this agreement
by keeping this work in the same format with its attached full
Project Gutenberg™ License when you share it without charge
with others.

1.D. The copyright laws of the place where you are located also
govern what you can do with this work. Copyright laws in most
countries are in a constant state of change. If you are outside
the United States, check the laws of your country in addition to
the terms of this agreement before downloading, copying,
displaying, performing, distributing or creating derivative works
based on this work or any other Project Gutenberg™ work. The
Foundation makes no representations concerning the copyright
status of any work in any country other than the United States.

1.E. Unless you have removed all references to Project


Gutenberg:

1.E.1. The following sentence, with active links to, or other


immediate access to, the full Project Gutenberg™ License must
appear prominently whenever any copy of a Project
Gutenberg™ work (any work on which the phrase “Project
Gutenberg” appears, or with which the phrase “Project
Gutenberg” is associated) is accessed, displayed, performed,
viewed, copied or distributed:

This eBook is for the use of anyone anywhere in the United


States and most other parts of the world at no cost and
with almost no restrictions whatsoever. You may copy it,
give it away or re-use it under the terms of the Project
Gutenberg License included with this eBook or online at
www.gutenberg.org. If you are not located in the United
States, you will have to check the laws of the country
where you are located before using this eBook.

1.E.2. If an individual Project Gutenberg™ electronic work is


derived from texts not protected by U.S. copyright law (does not
contain a notice indicating that it is posted with permission of
the copyright holder), the work can be copied and distributed to
anyone in the United States without paying any fees or charges.
If you are redistributing or providing access to a work with the
phrase “Project Gutenberg” associated with or appearing on the
work, you must comply either with the requirements of
paragraphs 1.E.1 through 1.E.7 or obtain permission for the use
of the work and the Project Gutenberg™ trademark as set forth
in paragraphs 1.E.8 or 1.E.9.

1.E.3. If an individual Project Gutenberg™ electronic work is


posted with the permission of the copyright holder, your use and
distribution must comply with both paragraphs 1.E.1 through
1.E.7 and any additional terms imposed by the copyright holder.
Additional terms will be linked to the Project Gutenberg™
License for all works posted with the permission of the copyright
holder found at the beginning of this work.

1.E.4. Do not unlink or detach or remove the full Project


Gutenberg™ License terms from this work, or any files
containing a part of this work or any other work associated with
Project Gutenberg™.

1.E.5. Do not copy, display, perform, distribute or redistribute


this electronic work, or any part of this electronic work, without
prominently displaying the sentence set forth in paragraph 1.E.1
with active links or immediate access to the full terms of the
Project Gutenberg™ License.

1.E.6. You may convert to and distribute this work in any binary,
compressed, marked up, nonproprietary or proprietary form,
including any word processing or hypertext form. However, if
you provide access to or distribute copies of a Project
Gutenberg™ work in a format other than “Plain Vanilla ASCII” or
other format used in the official version posted on the official
Project Gutenberg™ website (www.gutenberg.org), you must,
at no additional cost, fee or expense to the user, provide a copy,
a means of exporting a copy, or a means of obtaining a copy
upon request, of the work in its original “Plain Vanilla ASCII” or
other form. Any alternate format must include the full Project
Gutenberg™ License as specified in paragraph 1.E.1.

1.E.7. Do not charge a fee for access to, viewing, displaying,


performing, copying or distributing any Project Gutenberg™
works unless you comply with paragraph 1.E.8 or 1.E.9.

1.E.8. You may charge a reasonable fee for copies of or


providing access to or distributing Project Gutenberg™
electronic works provided that:

• You pay a royalty fee of 20% of the gross profits you derive
from the use of Project Gutenberg™ works calculated using the
method you already use to calculate your applicable taxes. The
fee is owed to the owner of the Project Gutenberg™ trademark,
but he has agreed to donate royalties under this paragraph to
the Project Gutenberg Literary Archive Foundation. Royalty
payments must be paid within 60 days following each date on
which you prepare (or are legally required to prepare) your
periodic tax returns. Royalty payments should be clearly marked
as such and sent to the Project Gutenberg Literary Archive
Foundation at the address specified in Section 4, “Information
about donations to the Project Gutenberg Literary Archive
Foundation.”

• You provide a full refund of any money paid by a user who


notifies you in writing (or by e-mail) within 30 days of receipt
that s/he does not agree to the terms of the full Project
Gutenberg™ License. You must require such a user to return or
destroy all copies of the works possessed in a physical medium
and discontinue all use of and all access to other copies of
Project Gutenberg™ works.

• You provide, in accordance with paragraph 1.F.3, a full refund of


any money paid for a work or a replacement copy, if a defect in
the electronic work is discovered and reported to you within 90
days of receipt of the work.

• You comply with all other terms of this agreement for free
distribution of Project Gutenberg™ works.

1.E.9. If you wish to charge a fee or distribute a Project


Gutenberg™ electronic work or group of works on different
terms than are set forth in this agreement, you must obtain
permission in writing from the Project Gutenberg Literary
Archive Foundation, the manager of the Project Gutenberg™
trademark. Contact the Foundation as set forth in Section 3
below.

1.F.

1.F.1. Project Gutenberg volunteers and employees expend


considerable effort to identify, do copyright research on,
transcribe and proofread works not protected by U.S. copyright
law in creating the Project Gutenberg™ collection. Despite these
efforts, Project Gutenberg™ electronic works, and the medium
on which they may be stored, may contain “Defects,” such as,
but not limited to, incomplete, inaccurate or corrupt data,
transcription errors, a copyright or other intellectual property
infringement, a defective or damaged disk or other medium, a
computer virus, or computer codes that damage or cannot be
read by your equipment.

1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except


for the “Right of Replacement or Refund” described in
paragraph 1.F.3, the Project Gutenberg Literary Archive
Foundation, the owner of the Project Gutenberg™ trademark,
and any other party distributing a Project Gutenberg™ electronic
work under this agreement, disclaim all liability to you for
damages, costs and expenses, including legal fees. YOU AGREE
THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT
EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE
THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY
DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE
TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL,
PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE
NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.

1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you


discover a defect in this electronic work within 90 days of
receiving it, you can receive a refund of the money (if any) you
paid for it by sending a written explanation to the person you
received the work from. If you received the work on a physical
medium, you must return the medium with your written
explanation. The person or entity that provided you with the
defective work may elect to provide a replacement copy in lieu
of a refund. If you received the work electronically, the person
or entity providing it to you may choose to give you a second
opportunity to receive the work electronically in lieu of a refund.
If the second copy is also defective, you may demand a refund
in writing without further opportunities to fix the problem.

1.F.4. Except for the limited right of replacement or refund set


forth in paragraph 1.F.3, this work is provided to you ‘AS-IS’,
WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.

1.F.5. Some states do not allow disclaimers of certain implied


warranties or the exclusion or limitation of certain types of
damages. If any disclaimer or limitation set forth in this
agreement violates the law of the state applicable to this
agreement, the agreement shall be interpreted to make the
maximum disclaimer or limitation permitted by the applicable
state law. The invalidity or unenforceability of any provision of
this agreement shall not void the remaining provisions.

1.F.6. INDEMNITY - You agree to indemnify and hold the


Foundation, the trademark owner, any agent or employee of the
Foundation, anyone providing copies of Project Gutenberg™
electronic works in accordance with this agreement, and any
volunteers associated with the production, promotion and
distribution of Project Gutenberg™ electronic works, harmless
from all liability, costs and expenses, including legal fees, that
arise directly or indirectly from any of the following which you
do or cause to occur: (a) distribution of this or any Project
Gutenberg™ work, (b) alteration, modification, or additions or
deletions to any Project Gutenberg™ work, and (c) any Defect
you cause.

Section 2. Information about the Mission


of Project Gutenberg™
Project Gutenberg™ is synonymous with the free distribution of
electronic works in formats readable by the widest variety of
computers including obsolete, old, middle-aged and new
computers. It exists because of the efforts of hundreds of
volunteers and donations from people in all walks of life.

Volunteers and financial support to provide volunteers with the


assistance they need are critical to reaching Project
Gutenberg™’s goals and ensuring that the Project Gutenberg™
collection will remain freely available for generations to come. In
2001, the Project Gutenberg Literary Archive Foundation was
created to provide a secure and permanent future for Project
Gutenberg™ and future generations. To learn more about the
Project Gutenberg Literary Archive Foundation and how your
efforts and donations can help, see Sections 3 and 4 and the
Foundation information page at www.gutenberg.org.

Section 3. Information about the Project


Gutenberg Literary Archive Foundation
The Project Gutenberg Literary Archive Foundation is a non-
profit 501(c)(3) educational corporation organized under the
laws of the state of Mississippi and granted tax exempt status
by the Internal Revenue Service. The Foundation’s EIN or
federal tax identification number is 64-6221541. Contributions
to the Project Gutenberg Literary Archive Foundation are tax
deductible to the full extent permitted by U.S. federal laws and
your state’s laws.

The Foundation’s business office is located at 809 North 1500


West, Salt Lake City, UT 84116, (801) 596-1887. Email contact
links and up to date contact information can be found at the
Foundation’s website and official page at
www.gutenberg.org/contact
Section 4. Information about Donations to
the Project Gutenberg Literary Archive
Foundation
Project Gutenberg™ depends upon and cannot survive without
widespread public support and donations to carry out its mission
of increasing the number of public domain and licensed works
that can be freely distributed in machine-readable form
accessible by the widest array of equipment including outdated
equipment. Many small donations ($1 to $5,000) are particularly
important to maintaining tax exempt status with the IRS.

The Foundation is committed to complying with the laws


regulating charities and charitable donations in all 50 states of
the United States. Compliance requirements are not uniform
and it takes a considerable effort, much paperwork and many
fees to meet and keep up with these requirements. We do not
solicit donations in locations where we have not received written
confirmation of compliance. To SEND DONATIONS or determine
the status of compliance for any particular state visit
www.gutenberg.org/donate.

While we cannot and do not solicit contributions from states


where we have not met the solicitation requirements, we know
of no prohibition against accepting unsolicited donations from
donors in such states who approach us with offers to donate.

International donations are gratefully accepted, but we cannot


make any statements concerning tax treatment of donations
received from outside the United States. U.S. laws alone swamp
our small staff.

Please check the Project Gutenberg web pages for current


donation methods and addresses. Donations are accepted in a
number of other ways including checks, online payments and
credit card donations. To donate, please visit:
www.gutenberg.org/donate.

Section 5. General Information About


Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project
Gutenberg™ concept of a library of electronic works that could
be freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose
network of volunteer support.

Project Gutenberg™ eBooks are often created from several


printed editions, all of which are confirmed as not protected by
copyright in the U.S. unless a copyright notice is included. Thus,
we do not necessarily keep eBooks in compliance with any
particular paper edition.

Most people start at our website which has the main PG search
facility: www.gutenberg.org.

This website includes information about Project Gutenberg™,


including how to make donations to the Project Gutenberg
Literary Archive Foundation, how to help produce our new
eBooks, and how to subscribe to our email newsletter to hear
about new eBooks.
Welcome to our website – the ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade

Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.

Let us accompany you on the journey of exploring knowledge and


personal growth!

ebookultra.com

You might also like