| Model | AGIEval | GPT4All | TruthfulQA | Bigbench | Average |
|---|---|---|---|---|---|
| MonarchPipe-7B-slerp | 46.12 | 74.89 | 66.59 | 47.49 | 58.77 |
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| agieval_aqua_rat | 0 | acc | 27.17 | ± | 2.80 |
| acc_norm | 27.17 | ± | 2.80 | ||
| agieval_logiqa_en | 0 | acc | 39.32 | ± | 1.92 |
| Model | AGIEval | GPT4All | TruthfulQA | Bigbench | Average |
|---|---|---|---|---|---|
| MonarchPipe-7B-slerp | 46.12 | 74.89 | 66.59 | 47.49 | 58.77 |
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| agieval_aqua_rat | 0 | acc | 27.17 | ± | 2.80 |
| acc_norm | 27.17 | ± | 2.80 | ||
| agieval_logiqa_en | 0 | acc | 39.32 | ± | 1.92 |
| import Jam from 'jam-react'; | |
| <Jam roomId="room-id" /> | |
| import React from 'react'; | |
| import Jam from 'jam-react'; | |
| function App() { | |
| let ids = ['01', '02', '03']; | |
| return ( | |
| <div style={{padding: '1rem'}}> | |
| <h1>Jam: My own Clubhouse!!!!</h1> | |
| <div> | |
| {ids.map(id => ( |
| [iframe src="https://jam.systems/room-id" allow="microphone *;" width="420" height="600"] |
| (defn input [r] | |
| (->> (.split r "\n") | |
| (map #(.trim %)) | |
| (map #(.split % " ")))) | |
| (defn anagram? [a b] | |
| (= (frequencies a) | |
| (frequencies b))) | |
| (defn valid? [passphrase] |
| document.addEventListener('visibilitychange', function(event) { | |
| if (document.hidden) { | |
| document.title = 'woohoo'; | |
| } else { | |
| document.title = 'old title'; | |
| } | |
| }); |
| crypto = require('crypto'); | |
| #Quick MD5 of text | |
| text = "MD5 this text!" | |
| md5hash1 = crypto.createHash('md5').update(text).digest("hex") | |
| #MD5 of text with updates | |
| m = crypto.createHash('md5') | |
| m.update("MD5 ") | |
| m.update("this ") |
| ### Keybase proof | |
| I hereby claim: | |
| * I am tosh on github. | |
| * I am tosh (https://keybase.io/tosh) on keybase. | |
| * I have a public key whose fingerprint is 502D 6C0F D8F6 7DA0 D77E F845 8083 24CE 6C92 3A14 | |
| To claim this, I am signing this object: |
| blah |
| def dto(self): | |
| """ | |
| Data Transfer Object | |
| http://en.wikipedia.org/wiki/Data_transfer_object | |
| datetimes are serialized to http://www.ietf.org/rfc/rfc3339.txt | |
| see: http://stackoverflow.com/questions/455580/json-datetime-between-python-and-javascript/456032#456032 | |
| """ | |
| return dict(key=self.key().name(), | |
| name=self.name, |