-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (71 loc) · 4.42 KB
/
Copy pathindex.html
File metadata and controls
84 lines (71 loc) · 4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>PetaVision</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- add jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(function(){
$('#sidebar').load("sidebar.html");
});
</script>
</head>
<body>
<div id="sidebar" class="wrapper"> </div>
<div class="wrapper">
<section>
<h1>
<a id="what-is-petavision" class="anchor" href="#what-is-petavision" aria-hidden="true"><span class="octicon octicon-link"></span></a>What is PetaVision?</h1>
<p>PetaVision is an open source, object oriented neural simulation toolbox optimized for high-performance multi-core, multi-node
computer architectures. PetaVision is intended for computational neuroscientists who seek to apply neuromorphic models to hard signal processing problems; both to improve on the performance of existing algorithms and/or to gain insight into the computational mechanisms underlying biological neural processing.</p>
<h2>
<a id="core-petavision-features" class="anchor" href="#core-petavision-features" aria-hidden="true"><span class="octicon octicon-link"></span></a>Core PetaVision Features:
</h2>
<ul>
<li>Open-sourced and developer-friendly</li>
<li>C/C++ for fast execution and OOP</li>
<li>Optimized for parallelization (OpenMP, MPI, cuDNN)</li>
<li>Based on local connectivity</li>
<li>Experiments defined through a text file</li>
</ul>
<h2>
<a id="how-has-petavision-been-used" class="anchor" href="#how-has-petavision-been-used" aria-hidden="true"><span class="octicon octicon-link"></span></a>How has PetaVision been used?
</h2>
<p>Petavision has been used on a range of vision and learning tasks including depth inference, action classification, and learning from multiple intelligence streams including weather and commodity prices. PetaVision has been used to perform image classification, sound analysis, and image-rescaling and is flexible enough to grow with your imagination.</p>
<h2>
<a id="getting-started" class="anchor" href="#getting-started" aria-hidden="true"><span class="octicon octicon-link"></span></a>Getting Started
</h2>
<p>Installation instructions can be found on our <a href="http://petavision.github.io/doxygen/index.html">documentation</a> page. Jump over to our <a href="https://github.com/PetaVision/OpenPV/wiki/LCA-CIFAR-Tutorial">wiki tutorial page</a> to get started with a basic example of running PetaVision. Our code is documented using <a href="http://www.stack.nl/~dimitri/doxygen/">doxygen</a>.
<h2>
<a id="petavision-aws" class="anchor" href="#petavision-aws" aria-hidden="true"><span class="octicon octicon-link"></span></a>
</h2>
<p>If you have an account on Amazon Web Services, you can try PetaVision using our public AMI on <a href="http://aws.amazon.com/">aws.amazon.com</a>. Search for "PetaVision Public AMI" and start an instance. Use a GPU instance (e.g. g2.8xlarge) to take full advantage of PetaVision's acceleration toolkit. Follow the instructions in our <a href="http://petavision.github.io/doxygen/md_docs_doxygen_src_install_aws.html">documentation for AWS</a> to get started.</p>
</section>
<!-- <footer>
<p>This project is maintained by <a href="https://github.com/PetaVision">PetaVision</a></p>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
-->
</div>
<script src="javascripts/scale.fix.js"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-65562349-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>