123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?php
- namespace App\Repositories;
- use App\Models\Annotation;
- use App\Models\Word;
- use App\Models\Sentence;
- use Illuminate\Support\Facades\DB;
- class AnnotationRepository extends ResourceRepository {
- public function __construct(Annotation $annotation, Word $words, Sentence $sentence) {
- $this->annotation = $annotation;
- $this->words = $words;
- $this->sentence = $sentence;
- }
- private function save(Annotation $annotation, Array $inputs) {
- $annotation->user_id = $inputs['user_id'];
- $annotation->postag_id = $inputs['postag_id'];
- $annotation->word_id = $inputs['word_id'];
- $annotation->confidence_score = $inputs['confidence_score'];
- $annotation->save();
- }
- public function store(Array $inputs) {
- $annotation = new $this->annotation;
- $this->save($annotation, $inputs);
- return $annotation;
- }
- public function getByWordId($word_id) {
- return $this->game->where('word_id', $word_id)->first();
- }
- public function get_number_correct_annotations_on_reference($user_id) {
- return($this->annotation->select(DB::raw('count(word_id) as count'))
- ->join('words', 'word_id', '=', 'words.id')
- ->join('sentences', 'sentence_id', '=', 'sentences.id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->whereRaw("annotations.user_id=?
- AND corpora.is_training=true
- AND (word_id, annotations.postag_id) IN
- (select word_id, annotations.postag_id FROM annotations, words, sentences, corpora, users
- WHERE annotations.user_id=users.id
- AND users.id=92
- AND words.id=annotations.word_id
- AND sentences.id=words.sentence_id
- AND corpora.id=sentences.corpus_id
- AND corpora.is_training=true group by word_id order by annotations.confidence_score desc)
- ", Array($user_id))
- ->first());
- }
- public function get_number_annotations_on_reference($user_id) {
- /* */
- return($this->annotation->select(DB::raw('count(word_id) as count'))
- ->join('words', 'word_id', '=', 'words.id')
- ->join('sentences', 'sentence_id', '=', 'sentences.id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->whereRaw("annotations.user_id=?
- AND words.id=annotations.word_id
- AND sentences.id=words.sentence_id
- AND corpora.id=sentences.corpus_id
- AND corpora.is_training=true", Array($user_id))->first());
- }
- public function get_user_annotation_count($user_id) {
- /* returns number of annotations on all sentences */
- return $this->annotation->select(DB::raw('count(*) as annotation_count'))
- ->where('user_id', $user_id)->first();
- }
- public function get_users_scores_and_annotation_counts() {
- /* returns number of annotations on all sentences */
- return $this->annotation->select(DB::raw('name, score, count(*) as annotation_count'))->get();
- }
- public function get_total_non_admin_annotations() {
- return $this->annotation->select(DB::raw('count(*) as annotation_count'))
- ->join('users', 'user_id', '=', 'users.id')
- ->where('is_admin', false)
- ->first();
- }
- public function get_annotated_sentences_words($user_id) {
- return $this->annotation->select(DB::raw('count(*) as annotation_count'))
- ->where('user_id', $user_id)->first();
- }
- public function get_pretag_by_sentence_id($sentence_id) {
- $melt_tags_array = $this->get_pretag_by_sentence_and_tagger($sentence_id, "MElt");
- $treetagger_tags_array = $this->get_pretag_by_sentence_and_tagger($sentence_id, "TreeTagger");
- $collection_melt = collect();
- foreach ($melt_tags_array as $result) {
- $collection_melt->put($result->word_id, ['postag_name' => $result->postag_name, 'postag_id' => $result->postag_id]);
- }
- $melt_tags = $collection_melt->toArray();
- $collection_tt = collect();
- foreach ($treetagger_tags_array as $key => $result) {
- $collection_tt->put($result->word_id, ['postag_name' => $result->postag_name, 'postag_id' => $result->postag_id]);
- }
- $treetagger_tags = $collection_tt->toArray();
- debug("treetagger");
- debug($treetagger_tags);
- $collection_pretag = collect();
- foreach ($melt_tags as $key => $melt_tag) {
- if ($melt_tag == $treetagger_tags[$key]) {
- $collection_pretag->put($key, $melt_tag);
- } else {
- $collection_pretag->put($key, null);
- }
- }
- debug($collection_pretag);
- return $collection_pretag;
- }
- public function get_pretag_by_sentence_and_tagger($sentence_id, $tagger_name) {
- return $this->annotation->select(DB::raw('words.id as word_id, postags.id as postag_id, postags.name as postag_name'))
- ->join('words', 'words.id', '=', 'annotations.word_id')
- ->join('sentences', 'sentences.id', '=', 'words.sentence_id')
- ->join('postags', 'postags.id', '=', 'annotations.postag_id')
- ->where('sentence_id', '=', $sentence_id)
- ->where('annotations.tagger', 'like', $tagger_name)
- ->get();
- }
- public function get_unannotated_words($corpus_id) {
- return $this->words->select(DB::raw('count(words.id) as count'))
- ->join('sentences', 'sentences.id', '=', 'words.sentence_id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->where('corpus_id', '=', $corpus_id)
- ->whereNotIn('words.id', $this->get_annotated_words($corpus_id))
- ->first();
- }
- public function get_annotated_words($corpus_id) {
- return($this->annotation->select(DB::raw('words.id'))
- ->join('words', 'words.id', '=', 'annotations.word_id')
- ->join('sentences', 'sentences.id', '=', 'words.sentence_id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->where('annotations.confidence_score', '<', '10')
- ->where('corpus_id', '=', $corpus_id)
- // ->where('user_id', '>', '192')
- ->get());
- }
- public function get_distinct_annotated_words($corpus_id) {
- return($this->annotation->select(DB::raw('distinct(words.id)'))
- ->join('words', 'words.id', '=', 'annotations.word_id')
- ->join('sentences', 'sentences.id', '=', 'words.sentence_id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->where('annotations.confidence_score', '<', '10')
- ->where('corpus_id', '=', $corpus_id)
- ->where('user_id', '>', '192')
- ->get());
- }
- public function count_annotable_words($corpus_id) {
- return($this->words->select(DB::raw('count(words.id) as count'))
- ->join('sentences', 'sentences.id', '=', 'words.sentence_id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->where('corpus_id', '=', $corpus_id)
- ->first());
- }
- public function get_total_annotations() {
- return($this->annotation->select(DB::raw('count(annotations.id) as count'))
- ->where('user_id', '>', 202)
- ->first());
- }
- public function get_total_words_annotated() {
- return($this->annotation->select(DB::raw('count(distinct(annotations.word_id)) as count'))
- ->where('user_id', '>', 202)
- ->first());
- }
-
- public function get_total_annotations_not_reference() {
- return($this->annotation->select(DB::raw('count(annotations.id) as count'))
- ->join('words', 'words.id', '=', 'annotations.word_id')
- ->join('sentences', 'sentences.id', '=', 'words.sentence_id')
- ->join('corpora', 'corpus_id', '=', 'corpora.id')
- ->where('user_id', '>', 202)
- ->where('corpora.is_training', '=', false)
- ->first());
- }
- public function get_total_sentences_annotated_not_reference() {
- return($this->sentence->select(DB::raw('count(distinct(sentences.id)) as count'))
- ->join('words', 'words.sentence_id', '=', 'sentences.id')
- ->join('annotations', 'annotations.word_id', '=', 'words.id')
- ->join('corpora', 'corpora.id', '=', 'corpus_id')
- ->where('user_id', '>', 202)
- ->where('corpora.is_training', '=', false)
- ->first());
- }
- }
|