Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lipskiyp/tensorflow
TensorFlow Practice Project
https://github.com/lipskiyp/tensorflow
Last synced: 4 days ago
JSON representation
TensorFlow Practice Project
- Host: GitHub
- URL: https://github.com/lipskiyp/tensorflow
- Owner: lipskiyp
- Created: 2024-01-10T13:55:29.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-16T09:51:04.000Z (10 months ago)
- Last Synced: 2024-01-17T02:24:17.850Z (10 months ago)
- Language: Python
- Size: 20.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TensorFlow Practice Project
## /deep_learning_with_python
Follows examples from "Deep Learning with Python" by FRANÇOIS CHOLLET, with additional comments/modifications.
## Notes
For issues with TensorFlow certificate try to edit:
/venv/lib/python3.8/site-packages/tensorflow/python/keras/utils/data_util.pyAdd below imports:
```python
import requests
try:
_create_unverified_https_context = ssl._create_unverified_context
except AttributeError:
# Legacy Python that doesn't verify HTTPS certificates by default
pass
else:
# Handle target environment that doesn't support HTTPS verification
ssl._create_default_https_context = _create_unverified_https_context
```