Skip to content
Snippets Groups Projects
Select Git revision
  • 3c252590fa2659ba54062a87d4a0dfbd75c39ed4
  • main default
  • final_pytorch
  • phase-1-final
4 results

classifier_150_all_train.pt

Blame
  • index.js 592 B
    function goToCCI() {
        window.location.replace('https://drexel.edu/cci/')
    }
    
    
    /**
     * Week 6
     */
    function getBooks() {
        let xhr = new XMLHttpRequest();
        xhr.open("GET", "/getBooks");
        xhr.onreadystatechange=function() {
            myCallBack(xhr);
          };
        xhr.send(null);
    }
    
    function myCallBack(xhr) {
        if (xhr.readyState==4 && xhr.status==200) {
            let table = document.getElementById('book-list');
            table.innerHTML = `<tr>
            <th>Title</th>
            <th>Author</th>
            <th>ISBN</th>
            <th>Available?</th>
            </tr>` + xhr.responseText;
        }
    }