196 lines
6.8 KiB
HTML
196 lines
6.8 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<title>Evan Pratten</title>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||
<!--[if lte IE 8]><script src="/assets/js/ie/html5shiv.js"></script><![endif]-->
|
||
<link rel="stylesheet" href="/assets/css/main.css" />
|
||
<!-- <link rel="stylesheet" href="/assets/css/custom.css" /> -->
|
||
<!--[if lte IE 9]><link rel="stylesheet" href="/assets/css/ie9.css" /><![endif]-->
|
||
<!--[if lte IE 8]><link rel="stylesheet" href="/assets/css/ie8.css" /><![endif]-->
|
||
|
||
<!-- Syntax highlight -->
|
||
<link rel="stylesheet" href="/assets/css/vs.css" />
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<!-- Wrapper -->
|
||
<div id="wrapper">
|
||
|
||
<!-- Header -->
|
||
<header id="header" >
|
||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||
<nav>
|
||
<!-- <a href="#menu">Menu</a> -->
|
||
</nav>
|
||
</header>
|
||
|
||
<!-- Menu -->
|
||
<!-- <nav id="menu">
|
||
<ul class="links">
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</ul>
|
||
<ul class="actions vertical">
|
||
<li><a href="#" class="button special fit">Get Started</a></li>
|
||
<li><a href="#" class="button fit">Log In</a></li>
|
||
</ul>
|
||
</nav> -->
|
||
|
||
<section id="banner" class="major" style="height:40vh">
|
||
<div class="inner">
|
||
<header class="major">
|
||
<h1>Using a python script to create devRant posts based on the style and content of another user</h1>
|
||
</header>
|
||
<div class="content">
|
||
<p >if/else ++</p>
|
||
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
|
||
<!-- Main -->
|
||
<div id="main" class="alt">
|
||
|
||
<!-- One -->
|
||
<section id="one">
|
||
<div class="inner">
|
||
|
||
<p><p>Ok… The title is slightly wrong. There are actually 2 scripts.. Sorry about that.</p>
|
||
|
||
<p>This is a guide on installing and using the <a href="https://github.com/Ewpratten/BecomeRanter">BecomeRanter</a> script.</p>
|
||
|
||
<h2 id="getting-dependancies">Getting dependancies</h2>
|
||
<p>The scripts use Google’s tensorflow library to do its “magic”. So first, we should install Tensorflow’s dependencies.</p>
|
||
|
||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>sudo apt install python3 python3-pip #change this command to fit your distro
|
||
pip3 install numpy
|
||
</code></pre></div></div>
|
||
<p>Then install Tensorflow</p>
|
||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>pip3 install tensorflow #for cpu processing
|
||
pip3 install tensorflow-gpu #for gpu processing
|
||
</code></pre></div></div>
|
||
|
||
<p>Next up, install the rest of the stuff:</p>
|
||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>pip3 install textgenrnn pandas keras
|
||
</code></pre></div></div>
|
||
|
||
<h2 id="clone-the-repo">Clone the repo</h2>
|
||
<p>This is pretty simple. just make sure you have <code class="highlighter-rouge">git</code> installed and run</p>
|
||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>git clone https://github.com/Ewpratten/BecomeRanter.git
|
||
</code></pre></div></div>
|
||
|
||
<h2 id="generate-some-rants-with-a-hdf5-file">Generate some rants with a .hdf5 file</h2>
|
||
<p>As of the time of writing this, I have pre-generated some files for the two most popular ranters. These files can be found in <code class="highlighter-rouge">BecomeRanter/Checkpoint\ Files</code>.</p>
|
||
|
||
<p>Higher epoch numbers mean that they have had more time to train. The files with lower numbers are generally funnier.</p>
|
||
|
||
<p>To change the .hdf5 file you would like to use, open the file called <code class="highlighter-rouge">createsomerants.py</code> and change the variable called <code class="highlighter-rouge">input_file</code> to the path of your file. By default, the script generates from the <code class="highlighter-rouge">Linuxxx-epoch-90.hdf5</code> file.</p>
|
||
|
||
<p>Next, save that file and run the following in your terminal:</p>
|
||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>python3 createsomerants.py >> output.txt
|
||
</code></pre></div></div>
|
||
<p>It will not print the results out to the screen and put them in the file instead.</p>
|
||
|
||
<p>To stop the script, press CTRL + C</p>
|
||
|
||
<h2 id="create-your-own-hdf5-file">Create your own .hdf5 file</h2>
|
||
<p>If you want to make your own hdf5 file, you just have to use the other script in the repo.</p>
|
||
|
||
<p>By default, you can just put all your text to train on in the <code class="highlighter-rouge">input.txt</code> file.</p>
|
||
|
||
<p>If you want to use a different file, or change the number of epochs, those variables can be found at the top of the <code class="highlighter-rouge">createhfd5frominput.py</code> file.</p>
|
||
|
||
<p>To start training, run:</p>
|
||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>python3 createhfd5frominput.py
|
||
</code></pre></div></div>
|
||
|
||
<p>A new hdf5 file will be generated in the same folder as the script</p>
|
||
|
||
</p>
|
||
</div>
|
||
</section>
|
||
|
||
</div>
|
||
|
||
<!-- Footer -->
|
||
<footer id="footer">
|
||
<div class="inner">
|
||
<ul class="icons">
|
||
|
||
<li><a href="https://twitter.com/ewpratten" class="icon alt fa-twitter" target="_blank"><span class="label">Twitter</span></a></li>
|
||
|
||
<li><a href="https://gitlab.com/u/ewpratten" class="icon alt fa-gitlab" target="_blank"><span class="label">GitLab</span></a></li>
|
||
|
||
<li><a href="https://github.com/ewpratten" class="icon alt fa-github" target="_blank"><span class="label">GitHub</span></a></li>
|
||
|
||
|
||
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
|
||
</ul>
|
||
<ul class="copyright">
|
||
<li>© Evan Pratten retrylife</li>
|
||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||
|
||
</ul>
|
||
</div>
|
||
</footer>
|
||
|
||
</div>
|
||
|
||
<!-- Scripts -->
|
||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||
|
||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||
<script>
|
||
window.dataLayer = window.dataLayer || [];
|
||
|
||
function gtag() {
|
||
dataLayer.push(arguments);
|
||
}
|
||
gtag('js', new Date());
|
||
|
||
gtag('config', 'UA-74118570-2');
|
||
</script>
|
||
|
||
</body>
|
||
|
||
</html> |