This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _:Na71bca5b03df4749a66d12a30355263c <http://schema.org/name> "Little Big Horn College" . | |
| _:Nd674cdcad5ff4955a11e5d87dc102fbf <http://schema.org/keywords> "Forestry" . | |
| _:Nd674cdcad5ff4955a11e5d87dc102fbf <http://schema.org/alternateName> "SMART FireS" . | |
| _:N9d75b00e4cae4509b868672a9020a81d <http://schema.org/name> "Salish Kootenai College" . | |
| _:Nd674cdcad5ff4955a11e5d87dc102fbf <http://schema.org/description> "A five-year program funded by the National Science Foundation (NSF) and led by Montana universities to better understand prescribed fires and their effects on the community of the state. It focuses on Controlled Burn, Artificial Intelligence, Forestry, and Machine Learning." . | |
| _:Nd674cdcad5ff4955a11e5d87dc102fbf <http://schema.org/member> _:Nc10d2f9a80764adeaac7e88f081c2e09 . | |
| _:Nc10d2f9a80764adeaac7e88f081c2e09 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/EducationalOrganization> . | |
| _:Nd674cdcad5ff4955a11e5d87dc102fbf <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Have to get creative with Schema though. I'm actively finagling. DTs cannot contain any block level elements, but DDs can. | |
| <dl vocab="http://schema.org/" typeof="Person"> | |
| <dt property="name">Sandra Fiegi</dt> | |
| <dd> | |
| <img property="image" src="example.jpg" alt="A photo of Sandra Fiegi"> | |
| </dd> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Searching Google Books using the Google Ajax Search API | |
| //http://code.google.com/apis/books/docs/js/jsondevguide.html | |
| //http://code.google.com/apis/ajaxsearch/documentation/#fonje | |
| //http://code.google.com/apis/ajaxsearch/documentation/reference.html#_intro_fonje | |
| //http://www.google.com/support/forum/p/booksearch-apis/thread?tid=0870ca17f002bfe1&hl=en | |
| //assign value for title of page | |
| $pageTitle = 'Search Books: Google Ajax Search API'; | |
| $subTitle = 'MSU Libraries'; | |
| //declare filename for additional stylesheet variable - default is "none" |