Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pashashiz/keras-samples
Samples of different Keras NN
https://github.com/pashashiz/keras-samples
Last synced: 1 day ago
JSON representation
Samples of different Keras NN
- Host: GitHub
- URL: https://github.com/pashashiz/keras-samples
- Owner: pashashiz
- Created: 2023-05-09T06:54:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-24T09:34:42.000Z (11 months ago)
- Last Synced: 2024-04-17T22:56:58.855Z (7 months ago)
- Language: Python
- Size: 2.99 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Create virtual env
```
python -m venv venv
```Activate a virtual env:
```
source venv/bin/activate
```
NOTE: configure PyCharm to use this env alsoInstall libs:
```
pip install -r requirements.txt
```Make PyCharm to resolve tansorflow.keras via a trick
```shell
cd venv/lib/python3.9/site-packages/tensorflow
ln -s ../keras/api/_v2/keras/ keras
```