GitXplorerGitXplorer
h

horoscopegenerator

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
bab7a87866d4f82383bbd3ad3a4a2b50b8bd50e8

But now actually working

hhallacy committed 4 years ago
Unverified
e2744086c4dbf904de8440f4b336bcf641372f6a

Add horoscope processing

hhallacy committed 4 years ago
Unverified
d63bcac61c86cefab406dd8abcdeaec5585b65e8

Add scraper and more requirements

hhallacy committed 4 years ago
Unverified
3cee1baa624e1a9efea8162729d133bc71e615ba

Updated README

jjosh-tollefson committed 4 years ago
Unverified
2fd1e8ac0907bda2989a16a7dac951b500af9cf5

Fixed typo and added versions

hhallacy committed 4 years ago
Unverified
efa7d142cfa98feabb98eef0f22c21f228d8e3a4

Readme for conda and basic requirements

hhallacy committed 4 years ago

README

The README file for this repository.

horoscopegenerator

Creating horoscopes with Neural Nets

Setup

Install

# You'll need conda.  

# make sure you have python 3.7
# anaconda is recommended if you don't have it:
curl -o /tmp/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash /tmp/miniconda.sh -b
~/miniconda3/bin/conda init  # Use `~/miniconda3/bin/conda init zsh` for zsh users
exec -l $SHELL
conda install --yes python==3.7.3

# At this point, make sure you have a `base` in your terminal string
conda create -n <insert name here> python==3.7.3
conda activate <insert name here>

# Next, install other dependencies
pip install -r requirements.txt

HI HALLACY