Advertisement
pszemraj

website placeholder v1

Oct 9th, 2022
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.62 KB | None | 0 0
  1. <!-- Make a nice HTML element that directs users to a demo that generates emails with AI for users.-->
  2. <!-- it should direct to this link https://huggingface.co/spaces/postbot/autocomplete-emails -->
  3. <!DOCTYPE html>
  4. <html>
  5.  
  6. <head>
  7.     <meta charset="utf-8">
  8.     <title>Co-Typist Autocomplete Emails</title>
  9.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
  10.     <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js"></script>
  11.     <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/posenet@0.2.0"></script>
  12.     <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/text-classification@1.0.0"></script>
  13.     <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/universal-sentence-encoder@1.0.0"></script>
  14.     <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/bi-attention@1.0.2"></script>
  15.     <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/simplernn@1.0.2"></script>
  16.     <style>
  17.         .center {
  18.             margin: auto;
  19.             width: 50%;
  20.             padding: 10px;
  21.         }
  22.  
  23.         .center img {
  24.             display: block;
  25.             margin: auto;
  26.             width: 50%;
  27.         }
  28.  
  29.         .center p {
  30.             font-size: 1rem;
  31.         }
  32.  
  33.         .center span {
  34.             font-size: 0.8rem;
  35.         }
  36.  
  37.         .center span a {
  38.             color: #0070f3;
  39.             text-decoration: none;
  40.  
  41.         }
  42.  
  43.         .center span a:hover {
  44.             text-decoration: underline;
  45.  
  46.         }
  47.  
  48.         .center span a:visited {
  49.             color: #0070f3;
  50.  
  51.         }
  52.  
  53.         .center span a:active {
  54.             color: #0070f3;
  55.  
  56.         }
  57.  
  58.         .center span a:focus {
  59.             color: #0070f3;
  60.  
  61.         }
  62.     </style>
  63. </head>
  64.  
  65. <body>
  66.     <section class="section">
  67.         <div class="container">
  68.             <div class="columns is-centered">
  69.                 <div class="column is-half">
  70.                     <div class="box">
  71.                         <h1 class="title">Co-Typist: AI-powered email generation</h1>
  72.                         <p class="subtitle">Compose your emails in collaboration with AI to make your workflow faster.</p>
  73.                         <p class="subtitle">Current demos and models can be found under the <i>postbot</i> alias on huggingface:</p>
  74.                         <ul>
  75.                             <li><a href="https://huggingface.co/spaces/postbot/autocomplete-emails" target="_blank">Autocomplete Emails</a></li>
  76.                             <li><a href="https://huggingface.co/postbot/distilgpt2-emailgen-V2" target="_blank">distilgpt2-emailgen-V2</a></li>
  77.                             <li><a href="https://huggingface.co/postbot/gpt2-medium-emailgen" target="_blank">gpt2-medium-emailgen</a></li>
  78.                         </ul>
  79.  
  80.                         <!--<form action="/submit" method="POST" enctype="multipart/form-data">-->
  81.  
  82.                         <!--<input type="file" name="fileToUpload" id="fileToUpload"/>-->
  83.  
  84.                         <!--<input type="submit"/>-->
  85.  
  86.                         <!--</form>-->
  87.  
  88.                         <!--<form action="/submit" method="POST" enctype="multipart/form-data">-->
  89.  
  90.                         <!--<input type="file" name="fileToUpload" id="fileToUpload"/>-->
  91.  
  92.                         <!--<input type="submit"/>-->
  93.  
  94.                         <!--</form>-->
  95.  
  96.                         <!--<form action="/submit" method="POST" enctype="multipart/form-data">-->
  97.  
  98.                         <!--<input type="file" name="fileToUpload" id="fileToUpload"/>-->
  99.  
  100.                         <!--<input type="submit"/>-->
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement