09/09 - Fresh Friday!

Status
Not open for further replies.

<Gucci>

Francis Manancis ...fuck you...
Threaderator
Crowd Pleaser
HIT Poster
Joined
Feb 6, 2016
Messages
13,614
Reaction score
29,767
Points
1,739
Age
39
Location
Detroit
Gender
Female
  • Like
Reactions: humbleturker

K'Lee

The Royal Taster
Contributor
Joined
Aug 6, 2016
Messages
4,769
Reaction score
8,180
Points
838
Age
56
Gender
Female
Title: Speech Signal Quality Evaluation | PANDA
Requester: Yang Zhang [A190UBM09QP5EI] (Contact)
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Please rate the quality of the speech signal processed by different algorithms
Time: 60 minutes
HITs Available: 70
Reward: $0.10
Qualifications: Location is US;

Jumping in because why not.
I wish you could play the example for the 2-3 rating. I can play the 1st one and the last example. Did you encounter this?
 

<Gucci>

Francis Manancis ...fuck you...
Threaderator
Crowd Pleaser
HIT Poster
Joined
Feb 6, 2016
Messages
13,614
Reaction score
29,767
Points
1,739
Age
39
Location
Detroit
Gender
Female
Title: **Scrambled Object Judgements** | PANDA
Requester: Bria Long [A275HKY8EPXRBI] (TO)
TO Ratings:
★★★★ 4.00 Communicativity
★★★★★ 3.14 Generosity
★★★★ 4.80 Fairness
★★★★ 4.60 Promptness
Number of Reviews: 25 | TOS Flags: 0
Submit a new TO review
Description: Make judgements about what an object used to be before it was scrambled. Should take ~15-20 minutes.
Time: 4 hours
HITs Available: 1
Reward: $1.25
Qualifications: HIT approval rate (%) is not less than 95;Location is US
 

Concise

Buddhist Bacchante
Joined
Apr 28, 2016
Messages
4,095
Reaction score
6,402
Points
813
Title: Speech Signal Quality Evaluation | PANDA
Requester: Yang Zhang [A190UBM09QP5EI] (Contact)
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Please rate the quality of the speech signal processed by different algorithms
Time: 60 minutes
HITs Available: 70
Reward: $0.10
Qualifications: Location is US;

Jumping in because why not.
me too. 3 day AA. I am being cautious and letting them run 60 seconds, even though they can be done quicker.

No T.O. ... well here we go wild west, let's see what THIS requester's like! :rolleyes:
 
  • Like
Reactions: <Gucci>

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,978
Points
1,313
Title: Rate Dating Profile Photos (for FEMALES age 26 TO 37) | PANDA
Requester: Ben Peterson [AFEG4RKNBSL4T] (Contact)
(TO): [Pay: 4.40] [Fair: 4.45] [Comm: 3.94] [Fast: 4.59]
Description:
Give your impression of a person in a photo to be used in a DATING profile. (For Female workers age 26 to 37) (WARNING: This HIT may contain adult content. Worker discretion is advised.)
Time: 5 minutes
HITs Available: 2
Reward: $0.03
Qualifications: Total approved HITs is not less than 50; Location is one of: CA, US; HIT approval rate (%) is not less than 90; Adult Content Qualification is 1;
 
  • Like
Reactions: <Gucci>
D

Deleted member 526

Guest
Code:
// ==UserScript==
// @name         Aristo MTurk - Rank science information
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       turker
// @grant        none
// @include      https://www.mturkcontent.com/*
// @require      http://code.jquery.com/jquery-latest.min.js
// ==/UserScript==
var counter = 0;
var evenNum = [];
evenNum[0] = 0;
evenNum[1] = 2;
evenNum[2] = 4;
evenNum[3] = 6;
evenNum[4] = 8;
evenNum[5] = 10;
var oddNum = [];
oddNum[0] = 1;
oddNum[1] = 3;
oddNum[2] = 5;
oddNum[3] = 7;
oddNum[4] = 9;
oddNum[5] = 11;
var mostOrLeast = 0;
document.getElementsByTagName("body")[0].onkeydown = function(event) {
for (a=0;a<4;a++) {
if (event.keyCode == a+49) {
for (i=0;i<evenNum.length;i++) {
if (counter == evenNum[i]) {
mostOrLeast = a;
}
else if (counter == oddNum[i]) {
mostOrLeast = a+4;
}
}
document.getElementsByClassName("diff-pair-table")[0].getElementsByTagName("input")[mostOrLeast].checked = true;
//document.getElementsByClassName("diff-pair-table")[0].getElementsByTagName("input")[mostOrLeast].checked = true;
counter = counter + 1;
}
}
};
I rewrote my script from scratch. does anyone know why this doesn't work? it should answer the first part of question 1 on pressing key 1,2,3, or 4. it works other than it doesn't click the bubble. clicking the bubble does work if I do that outside of the onkeydown part. like this -
Code:
// ==UserScript==
// @name         Aristo MTurk - Rank science information
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       turker
// @grant        none
// @include      https://www.mturkcontent.com/*
// @require      http://code.jquery.com/jquery-latest.min.js
// ==/UserScript==
var counter = 0;
var evenNum = [];
evenNum[0] = 0;
evenNum[1] = 2;
evenNum[2] = 4;
evenNum[3] = 6;
evenNum[4] = 8;
evenNum[5] = 10;
var oddNum = [];
oddNum[0] = 1;
oddNum[1] = 3;
oddNum[2] = 5;
oddNum[3] = 7;
oddNum[4] = 9;
oddNum[5] = 11;
var mostOrLeast = 0;


document.getElementsByClassName("diff-pair-table")[0].getElementsByTagName("input")[0].checked = true;



document.getElementsByTagName("body")[0].onkeydown = function(event) {
for (a=0;a<4;a++) {
if (event.keyCode == a+49) {
for (i=0;i<evenNum.length;i++) {
if (counter == evenNum[i]) {
mostOrLeast = a;
}
else if (counter == oddNum[i]) {
mostOrLeast = a+4;
}
}
//document.getElementsByClassName("diff-pair-table")[0].getElementsByTagName("input")[mostOrLeast].checked = true;
//document.getElementsByClassName("diff-pair-table")[0].getElementsByTagName("input")[mostOrLeast].checked = true;
counter = counter + 1;
}
}
};
 

K'Lee

The Royal Taster
Contributor
Joined
Aug 6, 2016
Messages
4,769
Reaction score
8,180
Points
838
Age
56
Gender
Female
me too. 3 day AA. I am being cautious and letting them run 60 seconds, even though they can be done quicker.

No T.O. ... well here we go wild west, let's see what THIS requester's like! :rolleyes:
I've done 20. Not sure if I should do more. I'm a little scared since there is no TO rating. :cautious:
 
Status
Not open for further replies.