Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zrthxn/yemal
Models, templates and scripts
https://github.com/zrthxn/yemal
basic-python jupyter keras lstm machine-learning ml-tutorial recurrent-neural-networks tensorflow
Last synced: 11 days ago
JSON representation
Models, templates and scripts
- Host: GitHub
- URL: https://github.com/zrthxn/yemal
- Owner: zrthxn
- Created: 2019-03-06T10:07:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-21T22:40:57.000Z (about 2 years ago)
- Last Synced: 2023-03-07T00:29:29.252Z (almost 2 years ago)
- Topics: basic-python, jupyter, keras, lstm, machine-learning, ml-tutorial, recurrent-neural-networks, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 43.1 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Machine Learning
Introduction to the hot topics## About
This repository is a sort of storage for basic ML programs
that I do. Each project is in a separate folder and mostly
these will be Jupyter notebooks because of the ease.So if someone wants to use this, I have provided a shell script for UNIX systems that will download and setup the datasets for you. All you have to do is
```
# Enter the project directory
$ cd ~/yemal# Give permission to execute the shell script
$ sudo chmod +x download.sh#Execute
$ ./download.sh
```
Otherwise there is a dataset download link in the readme in most projects. There is a trained model pickle included wherever possible.# Instructions
The following instructions will get you up to speed on how to install everything that is necessary. Please be advised, installing all these by hand is a very risky game. If you're lucky you'll be able to figure it out in about an hour. If not, you'll spend days pulling your hair out.## Steps to Start
1. Install Python 3.6.0 and only **Python 3.6.0** from the official python website. This will be the root python interpreter for your system.2. Go to Anaconda's website and download the Anaconda setup for your system. Anaconda, or more precisely it's package manager **conda** will help you manage all the millions of lines of code.
3. Once Anaconda is installed, add the install path and the Scripts directory to your PATH system environment variable.
4. You should now be able to access *conda* from your terminal
```
$ conda --version
```5. Create a Virtual Environment with conda. Here you can choose whatever venv name you want. Keep the Python version at 3.6 to avoid errors.
```
$ conda create -n python=3.6
```6. Activate the venv by
```
$ conda activate
# You're now in conda world!
```7. Use pip to install any packages you want. We will install the requirements from our requirements.txt file
```
(venv) $ cd ~/yemal
(venv) $ pip install -r requirements.txt
```### Required
- Anaconda 3
- Python 3.6### Recommended
- Jupyter
- CUDA Toolkit