Replies: 1 comment 3 replies
-
Thanks for the note, and sorry about this hassle. (Looks like it's the same issue as in #363 ; this was originally an issue on the Manning website but was fixed there; the issue still persists on the O'Reilly platform). I just pinged the publisher to let them know to also check the epub. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
small error in the EPUB I found from typing it out
preprocessed = re.split(r'([,.:;?_!"()\']|--|\\s)', text)
but it should be one slash for a regex space '\s' - The github repo and the PDF have the right version of this:
preprocessed = re.split(r'([,.:;?_!"()\']|--|\s)', text)
It's in several places - maybe it's a problem with converting to EPUB?
![image](https://private-user-images.githubusercontent.com/6274407/382438993-51f1ae9d-bd1e-4cad-95ea-99c330f15c81.jpeg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MDM0ODAsIm5iZiI6MTczOTYwMzE4MCwicGF0aCI6Ii82Mjc0NDA3LzM4MjQzODk5My01MWYxYWU5ZC1iZDFlLTRjYWQtOTVlYS05OWMzMzBmMTVjODEuanBlZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDA3MDYyMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTdmZDE0YjE2N2QwZThjMTIzOGMwMTRhMTk4YWY2NWZlOGVjZThlMzNhZTdjOTFlZTBkZWFjNzExYWE1ZDNmMWMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.ybOSiALkvWw5AazXnakRZ9aMpLM4axnZvmDmPBAp224)
![image](https://private-user-images.githubusercontent.com/6274407/382439037-fff0005b-206c-466d-a8e0-0460e1309e5a.jpeg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MDM0ODAsIm5iZiI6MTczOTYwMzE4MCwicGF0aCI6Ii82Mjc0NDA3LzM4MjQzOTAzNy1mZmYwMDA1Yi0yMDZjLTQ2NmQtYThlMC0wNDYwZTEzMDllNWEuanBlZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDA3MDYyMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTY4MGJmNjBjZThkNWQ2M2NkMjg0MmExMmUzZjIxZWY0ODk2MDExMDZiZWMwNTQ0ZjY0ZDA1YmMzNWY0OTQyZTImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.0fRmTkAKj-1G6VZQUFmmVdG1PVw9b2fQCP8xhQKK7Fc)
Beta Was this translation helpful? Give feedback.
All reactions