Skip to content

Commit

Permalink
front page
Browse files Browse the repository at this point in the history
  • Loading branch information
evanbrociner committed Mar 25, 2024
1 parent fed89ff commit 14215ac
Show file tree
Hide file tree
Showing 2 changed files with 240 additions and 160 deletions.
232 changes: 232 additions & 0 deletions ai.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,232 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="AI in Healthcare Resources For Startups">

<title>AI in Healthcare Resources For Startups</title>

<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="grid.css" rel="stylesheet">
<style>
body {
background-color: #FAFAF4;
font-size: 1.2rem;
}

/* Style for all tables, except those with 'unique-table' class */
table:not(.unique-table) {
table-layout: fixed;
width: 100%;
}

table:not(.unique-table) tr th:nth-child(2) {
width: 65%;
}

table:not(.unique-table) tr td:first-child {
font-weight: bold;
}

.unique-table {
table-layout: fixed;
}

a {
color: #008080;
}

li,
p {
color: #333333;
}
</style>

</head>

<body>

<div class="container">
<h1 style="margin-top: 20px;">AI in Healthcare Resources For Startups</h1>

<h3>By, Evan Brociner</h3>
<p style="margin-bottom: 20px;">An active collection of my favorite AI in healthcare resources.</p>

<h3 style="margin-top: 20px;">Outline</h3>
<ul>
<li>
<a href="#101">AI 101</a>
</li>


<li>
<a href="#validation">Validation</a>
</li>

<li>
<a href="#use-cases">Use Cases</a>
</li>


<li>
<a href="#newsletters">Newsletters</a>
</li>





</ul>


<section id="101">

<h3 id="101" style="margin-top: 40px;">AI 101</h3>

<table class="table mx-auto">
<thead>
<tr>
<th scope="col">Term</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>

<tr>
<td>Neural Network</td>
<td>A type of machine learning algorithm inspired by the structure of the human brain, composed of interconnected "neurons" that process and transmit information.</td>
</tr>

<tr>
<td>Natural Language Processing (NLP)</td>
<td>The field of AI concerned with enabling computers to understand, interpret, and generate human language. Used in healthcare for analyzing medical notes or providing conversational AI interfaces.</td>
</tr>

<tr>
<td>Fine-Tuning</td>
<td>
A process where a pre-trained machine learning model is further trained on a smaller, more specialized dataset to improve its performance on a specific task.
</td>
</tr>

<tr>
<td>Pre-Trained</td>
<td>
A machine learning model that has already been trained on a large, general-purpose dataset, enabling it to have a foundational understanding of patterns and can be adapted for more specific tasks.
</td>
</tr>





</tbody>
</table>

<img src="static/img/ML.png" class="rounded mx-auto d-block" alt="..." width="1100" height="600">

</section>

<section id="validation">

<h3 id="validation" style="margin-top: 40px;">Validation</h3>

<table class="table mx-auto">
<thead>
<tr>
<th scope="col">Resource</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>

<tr>
<td>
<a target="_blank" rel="noopener noreferrer" href="https://healthaipartnership.org">
health ai partnerships</a>
</td>
<td>
HAIP empowers health care professionals to use artificial intelligence (AI) effectively, safely, and equitably. The organization includes many different healthcare institutions.

</td>

</tbody>
</table>

</section>


<section id="newsletters">
<h3 id="newsletters" style="margin-top: 40px;">Newsletters</h3>

<table class="table mx-auto">
<thead>
<tr>
<th scope="col">Resource</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a target="_blank" rel="noopener noreferrer" href="https://bensbites.beehiiv.com">Ben's Bites</a>
</td>
<td> Newsletter with quick insights on AI in all fields</td>
</tr>

<tr>
<td>
<a target="_blank" rel="noopener noreferrer" href="https://www.nejm.org/ai">AI NEJM</a>
</td>
<td> Resources on AI in medicine from the New England Journal of Medicine</td>
</tr>

<tr>
<td>
<a target="_blank" rel="noopener noreferrer" href="https://jamanetwork.com/journals/jama/jama-artificial-intelligence">JAMA AI</a>
</td>
<td> Journal focused on AI in healthcare</td>
</tr>

<tr>
<td>
<a target="_blank" rel="noopener noreferrer" href="https://paperswithcode.com/">Papers With Code</a>
</td>
<td> Latest AI research papers with code implementations </td>
</tr>

<tr>
<td>
<a target="_blank" rel="noopener noreferrer" href="https://doctorpenguin.com/index">Doctor Penguin</a>
</td>
<td> Latest AI in healthcare papers</td>
</tr>

</tbody>
</table>

</section>


</body>

<footer class="footer mt-auto py-3 ">
<div class="container d-flex justify-content-between">
<span class="text-muted">Contact me: [email protected]</span>
<a href="https://www.linkedin.com/in/evan-brociner/" target="_blank" rel="noopener noreferrer">
LinkedIn
</a>

</div>
</footer>

<!-- Bootstrap JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>

</body>

</html>
Loading

0 comments on commit 14215ac

Please sign in to comment.