| Model | AGIEval | GPT4All | TruthfulQA | Bigbench | Average |
|---|---|---|---|---|---|
| Mistral-7B-Instruct-v0.2 | 38.94 | 71.67 | 66.88 | 42.22 | 54.93 |
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| agieval_aqua_rat | 0 | acc | 23.23 | ± | 2.65 |
| acc_norm | 22.83 | ± | 2.64 | ||
| agieval_logiqa_en | 0 | acc | 36.25 | ± | 1.89 |
| Model | AGIEval | GPT4All | TruthfulQA | Bigbench | Average |
|---|---|---|---|---|---|
| Mistral-7B-Instruct-v0.2 | 38.94 | 71.67 | 66.88 | 42.22 | 54.93 |
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| agieval_aqua_rat | 0 | acc | 23.23 | ± | 2.65 |
| acc_norm | 22.83 | ± | 2.64 | ||
| agieval_logiqa_en | 0 | acc | 36.25 | ± | 1.89 |
| #Fixes notorious `dockerd: failed to start daemon: Devices cgroup isn't mounted` error when trying to start docker | |
| #in a privileged concourse container. | |
| #From: https://github.com/concourse/docker-image-resource/blob/master/assets/common.sh#L1-L40 | |
| #See also: https://github.com/concourse/concourse/issues/324 | |
| sanitize_cgroups() { | |
| if [ -e /sys/fs/cgroup/cgroup.controllers ]; then | |
| return | |
| fi | |
| mkdir -p /sys/fs/cgroup |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| Summary: | |
| When ARC is enabled, C++ candidate templates' pointer template parameters are not correctly substituted for objective-C object pointers. | |
| Steps to reproduce: | |
| Compile the following main.mm file, with and without ARC: | |
| #import <Foundation/Foundation.h> | |
| template <typename T> |
| Summary: | |
| When ARC is enabled, C++ candidate templates are ignored due to an incorrectly diagnosed substitution failure. | |
| Steps to Reproduce: | |
| Compile the following main.mm file, with and without ARC: | |
| #import <Foundation/Foundation.h> | |
| template <typename T> |
| #!/usr/bin/osascript | |
| (* | |
| What does this script do? | |
| This script lets you quickly open the Cedar spec for the corresponding class header/implementation that is currently open in Xcode. If the spec is open, it opens the implementation instead. | |
| How do I use it? | |
| Save this script somewhere. | |
| Start Xcode and go to Xcode > Behaviors > Edit Behaviors… |
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="robbyrussell" | |
| # Set to this to use case-sensitive completion |
| #!/bin/sh | |
| # | |
| # aerobuild.sh | |
| # | |
| # What does this do? | |
| # ================== | |
| # - Bumps build numbers in your project using agvtool | |
| # - Builds your app and packages it for testing/ad-hoc distribution | |
| # - Commits build number changes to git |
| on run {input, parameters} | |
| tell application "Xcode" | |
| set my_workspace to active workspace document | |
| set workspace_projects to projects of my_workspace | |
| set currentFullPath to "" | |
| set projectDir to "" | |
| set reverseDocumentList to (reverse of (source documents as list)) | |