Ejemplo n.º 1
0
        public Common.DTO.SpecialtiesAndCount GetSpecialtiesByDirectionAndDistrictAll(DirectionAndDistrictInfo directionAndDistrict)
        {
            Common.DTO.SpecialtiesAndCount specialtiesAndCount = new Common.DTO.SpecialtiesAndCount();

            var qry = from s in this.context.Specialties
                      where s.Direction.GeneralDirection.Id == directionAndDistrict.GeneralDirection
                      join u in this.context.Universities on s.University.Id equals u.Id
                      join d in this.context.Districts on u.District.Id equals d.Id
                      where d.Id == directionAndDistrict.District
                      orderby RatingProvider.GetRating(s.NumApplication, s.NumEnrolled) descending
                      select new Common.DTO.Specialty()
            {
                Name       = s.Name,
                Address    = u.Address,
                District   = d.Name,
                Site       = u.Site,
                University = u.Name,
                Subjects   = (from ss in this.context.Specialty_Subjects
                              where ss.Specialty.Id == s.Id
                              select ss.Subject.ToCommon()).ToList()
            };

            specialtiesAndCount.CountOfAllElements = qry.Count();
            specialtiesAndCount.ListSpecialties    = qry.Skip((directionAndDistrict.Page - 1) * directionAndDistrict.CountOfElementsOnPage).Take(directionAndDistrict.CountOfElementsOnPage);
            return(specialtiesAndCount);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Установить оценку для студента
 /// </summary>
 /// <param name="student"></param>
 public void StudentSetGrade(StudentRatingModel student)
 {
     RatingProvider.RateStudent(
         student.Student.Id,
         Subject.Id,
         student.Grade);
 }
Ejemplo n.º 3
0
        /// <summary>
        /// Установить студентов
        /// </summary>
        /// <param name="students"></param>
        public void SetStudents(IList <StudentRatingModel> students)
        {
            Students = students;
            if (students.Count == 0)
            {
                Students = RatingProvider.CreateEntries(Group.Id, Subject.Id);
            }

            StudentsUpdated?.Invoke(this, EventArgs.Empty);
        }
Ejemplo n.º 4
0
        private static void LoadData(out List <IUser> trainUsers, out List <IRating> trainRatings, out List <IUser> testUsers, out List <IRating> testRatings, out List <IArtist> artists)
        {
            Console.WriteLine("Loading data...");
            timer.Restart();
            trainRatings = RatingProvider.Load(DataFiles.TrainEqualFerquencyFiveScaleRatings);
            trainUsers   = UserProvider.Load(DataFiles.TrainUsers);
            artists      = ArtistProvider.Load(DataFiles.Artists);
            trainUsers.PopulateWithRatings(trainRatings);

            testRatings = RatingProvider.Load(DataFiles.TestEqualFerquencyFiveScaleRatings);
            testUsers   = UserProvider.Load(DataFiles.TestUsers);
            testUsers.PopulateWithRatings(testRatings);
            timer.Stop();
            Console.WriteLine("Data loaded ({0}ms).", timer.ElapsedMilliseconds);
        }
Ejemplo n.º 5
0
        private void GroupComboBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            ComboBox comboBox = sender as ComboBox;

            DisposeRatingPanel();

            Presenter.SetGroup(Groups[comboBox.SelectedIndex]);

            StudentsRating = RatingProvider.GetRating(
                Groups[comboBox.SelectedIndex].Id,
                Subjects[subjectComboBox.SelectedIndex].Id);

            DisposeRatingPanel();

            Presenter.SetStudents(StudentsRating);
        }
Ejemplo n.º 6
0
        private static void RatingHistogram(string ratingsFile)
        {
            var ratings = RatingProvider.Load(ratingsFile);

            var ratingBins = new int[5];

            foreach (var rating in ratings)
            {
                ratingBins[((int)rating.Value) - 1]++;
            }

            for (var i = 0; i < ratingBins.Length; i++)
            {
                Console.WriteLine("{0}\t{1}", i + 1, ratingBins[i]);
            }
        }
Ejemplo n.º 7
0
 private IEnumerable <Common.DTO.Specialty> GetSpecialty(ListSubjectsAndDistrict subjects, List <int> q)
 {
     return((from s in this.context.Specialties
             join u in this.context.Universities on s.University.Id equals u.Id
             where q.Contains(s.Id)
             orderby RatingProvider.GetRating(s.NumApplication, s.NumEnrolled) descending
             select new Common.DTO.Specialty()
     {
         Name = s.Name,
         Address = u.Address,
         District = u.District.Name,
         Site = u.Site,
         University = u.Name,
         Subjects = (from ss in this.context.Specialty_Subjects
                     where ss.Specialty.Id == s.Id
                     select ss.Subject.ToCommon()).ToList()
     }).Skip((subjects.page - 1) * subjects.countOfElementsOnPage).Take(subjects.countOfElementsOnPage).ToList());
 }
Ejemplo n.º 8
0
 public SpecialtyProvider(EpaContext context, IOptions <ConstSettings> constValues)
 {
     this.context        = context;
     this.constValues    = constValues;
     this.ratingProvider = new RatingProvider(constValues.Value.KoefOfNumApplication);
 }
Ejemplo n.º 9
0
 public UserInformationProvider(EpaContext context, IOptions <ConstSettings> constValues)
 {
     this.context     = context;
     this.constValues = constValues;
     ratingProvider   = new RatingProvider(constValues.Value.KoefOfNumApplication);
 }
Ejemplo n.º 10
0
        public static void Main()
        {
            InitializeWriter(@"d:\dataset\da\2d-svd.tsv");
            List <string> artistIndexLookupTable;
            var           artists = ArtistProvider.Load(DataFiles.Artists, out artistIndexLookupTable);
            var           ratings = RatingProvider.Load(DataFiles.EqualFerquencyFiveScaleRatings);

            var ratingsByArtists = new int[artists.Count];
            var artistCount      = new int[artists.Count];

            foreach (var rating in ratings)
            {
                ratingsByArtists[rating.ArtistIndex] += (int)rating.Value;
                artistCount[rating.ArtistIndex]++;
            }

            //for (var i = 0; i < ratingsByArtists.Length; i++)
            //    Write(string.Format("{0}\t{1}\t{2}\t{3}", artists[i].Name, ratingsByArtists[i], artistCount[i], (float)ratingsByArtists[i] / (float)artistCount[i]), false);

            //var dict = new Dictionary<string, int>();
            //for (var i = 0; i < ratingsByArtists.Length; i++)
            //    dict.Add(artists[i].Name, ratingsByArtists[i]);

            //var dict = new Dictionary<string, int>();
            //for (var i = 0; i < ratingsByArtists.Length; i++)
            //    dict.Add(artists[i].Name, artistCount[i]);

            //var top = dict./*Where(a => a.Value > 5000).*/OrderByDescending(a => a.Value).Select(a => a.Key).ToArray();

            //var top = new[] { "radiohead", "the beatles", "coldplay", "red hot chili peppers", "muse", "metallica", "pink floyd", "the killers", "linkin park", "nirvana", "system of a down", "queen", "u2", "daft punk", "the cure", "led zeppelin", "placebo", "depeche mode", "david bowie", "bob dylan", "death cab for cutie", "arctic monkeys", "foo fighters", "air", "the rolling stones", "nine inch nails", "sigur rós", "green day", "massive attack", "moby", "amy winehouse", "portishead", "rammstein", "björk", "kanye west", "bloc party", "johnny cash", "kings of leon", "the white stripes", "beck", "the doors", "oasis", "ac/dc", "the prodigy", "madonna", "the smashing pumpkins", "iron maiden", "jack johnson", "franz ferdinand", "michael jackson", "nightwish", "blink-182", "the offspring", "gorillaz", "incubus", "r.e.m.", "the smiths", "belle and sebastian", "koЯn", "feist", "the strokes", "britney spears", "modest mouse", "tool", "interpol", "snow patrol", "pearl jam", "evanescence", "fall out boy", "queens of the stone age", "sufjan stevens", "röyksopp", "pixies", "tom waits", "rage against the machine", "the kooks", "bob marley", "in flames", "marilyn manson", "arcade fire", "the chemical brothers", "rihanna", "the clash", "joy division", "mgmt", "eminem", "the shins", "beastie boys", "slipknot", "[unknown]", "boards of canada", "elliott smith", "avril lavigne", "paramore", "norah jones", "beirut", "cat power", "jimi hendrix", "black sabbath", "aphex twin", "disturbed", "the who", "my chemical romance", "regina spektor", "ramones", "nickelback", "elvis presley", "blur", "thievery corporation", "sonic youth", "jamiroquai", "lily allen", "keane", "bob marley & the wailers", "justice", "bright eyes", "nelly furtado", "aerosmith", "a perfect circle", "frank sinatra", "lady gaga", "rise against", "justin timberlake", "manu chao", "goldfrapp", "miles davis", "iron & wine", "maroon 5", "dream theater", "apocalyptica", "kaiser chiefs", "the knife", "the cranberries", "bruce springsteen", "katy perry", "mogwai", "beyoncé", "the beach boys", "neil young", "opeth", "the velvet underground", "tenacious d", "slayer", "sum 41", "tori amos", "children of bodom", "pj harvey", "damien rice", "jimmy eat world", "simon & garfunkel", "megadeth", "animal collective", "john mayer", "guns n' roses", "3 doors down", "30 seconds to mars", "deftones", "dire straits", "enya", "the decemberists", "jason mraz", "limp bizkit", "the postal service", "abba", "alanis morissette", "m.i.a.", "black eyed peas", "deep purple", "audioslave", "eric clapton", "creedence clearwater revival", "bonobo", "hot chip", "morcheeba", "the kinks", "afi", "bon jovi", "pendulum", "billy talent", "jay-z", "mika", "guns n roses", "nina simone", "of montreal", "pantera", "porcupine tree", "papa roach", "robbie williams", "fatboy slim", "bad religion", "dido", "kings of convenience", "christina aguilera", "broken social scene", "james blunt", "bullet for my valentine", "morrissey", "travis", "him", "explosions in the sky", "ladytron", "judas priest", "josé gonzález", "nick drake", "tegan and sara", "sonata arctica", "panic at the disco", "crystal castles", "alice in chains", "nouvelle vague", "alicia keys", "the police", "nofx", "misfits", "the flaming lips", "dj shadow", "sublime", "the mars volta", "kylie minogue", "motörhead", "pink", "nas", "leonard cohen", "new order", "vampire weekend", "eels", "blind guardian", "the national", "good charlotte", "andrew bird", "timbaland", "garbage", "kelly clarkson", "infected mushroom", "enigma", "fleet foxes", "breaking benjamin", "faithless", "cake", "devendra banhart", "stevie wonder", "tv on the radio", "cocorosie", "the fray", "editors", "2pac", "amon tobin", "the cardigans", "50 cent", "the hives", "imogen heap", "elton john", "johann sebastian bach", "amon amarth", "scorpions", "spoon", "m83", "sting", "groove armada", "killswitch engage", "gnarls barkley", "nick cave and the bad seeds", "soundtrack", "hans zimmer", "atb", "the roots", "the all-american rejects", "burial", "jeff buckley", "dropkick murphys", "brand new", "the ting tings", "the cinematic orchestra", "mariah carey", "snoop dogg", "klaxons", "talking heads", "die Ärzte", "three days grace", "lamb", "anathema", "arch enemy", "faith no more", "outkast", "akon", "duffy", "david guetta", "lacuna coil", "cypress hill", "neutral milk hotel", "kasabian", "kate nash", "frank zappa", "architecture in helsinki", "tiësto", "kiss", "the used", "lenny kravitz", "cut copy", "fleetwood mac", "ratatat", "ozzy osbourne", "stars", "band of horses", "prince", "the libertines", "a tribe called quest", "bon iver", "flogging molly", "billie holiday", "sepultura", "the fratellis", "yann tiersen", "lostprophets", "taking back sunday", "the magnetic fields", "t.i.", "the pussycat dolls", "armin van buuren", "genesis", "dave matthews band", "dashboard confessional", "katatonia", "mando diao", "antony and the johnsons", "cansei de ser sexy", "john lennon", "simple plan", "counting crows", "dimmu borgir", "common", "bloodhound gang", "ludwig van beethoven", "metric", "cradle of filth", "digitalism", "avenged sevenfold", "pavement", "lcd soundsystem", "kraftwerk", "shakira", "cascada", "moloko", "maxïmo park", "no doubt", "rilo kiley", "stereophonics", "rjd2", "katie melua", "pet shop boys", "the verve", "ella fitzgerald", "mindless self indulgence", "unkle", "helloween", "dark tranquillity", "michael bublé", "rancid", "as i lay dying", "guano apes", "sia", "goo goo dolls", "alkaline trio", "jethro tull", "blonde redhead", "rush", "lamb of god", "kt tunstall", "ryan adams", "amy macdonald", "kate bush", "gotan project", "girl talk", "weezer", "ben harper", "tricky", "the jimi hendrix experience", "hooverphonic", "ne-yo", "fiona apple", "howard shore", "lupe fiasco", "yeah yeah yeahs", "brian eno", "razorlight", "rufus wainwright", "van halen", "ray charles", "my bloody valentine", "gogol bordello", "eagles", "john williams", "leona lewis", "the streets", "erykah badu", "lifehouse", "chris brown", "soundgarden", "babyshambles", "sarah mclachlan", "gwen stefani", "basement jaxx", "bryan adams", "coheed and cambria", "james brown", "dead can dance", "atreyu", "notorious b.i.g.", "santana", "scooter", "underworld", "god is an astronaut", "louis armstrong", "ennio morricone", "underoath", "dr. dre", "calexico", "van morrison", "manowar", "adele", "marvin gaye", "ben folds", "john coltrane", "iced earth", "t.a.t.u.", "clint mansell", "ensiferum", "john legend", "kent", "billy joel", "static-x", "new found glory", "phil collins", "autechre", "diana krall", "serj tankian", "phoenix", "blondie", "santogold", "kamelot", "alexisonfire", "nightmares on wax", "soilwork", "manic street preachers", "staind", "amorphis", "the raconteurs", "alice cooper", "godsmack", "korpiklaani", "dragonforce", "mew", "peter gabriel", "paul van dyk", "lil wayne", "cat stevens", "p.o.d.", "janis joplin", "dead kennedys", "behemoth", "the black keys", "múm", "the game", "the dresden dolls", "aretha franklin", "millencolin", "frédéric chopin", "de-phazz", "rob zombie", "the new pornographers", "therion", "roxette", "hoobastank", "the mountain goats", "finntroll", "scissor sisters", "atmosphere", "anti-flag", "trivium", "basshunter", "jefferson airplane", "death", "hammerfall", "pulp", "black rebel motorcycle club", "thom yorke", "sade", "patrick wolf", "joe satriani", "anberlin", "cannibal corpse", "stone sour", "lou reed", "camera obscura", "mastodon", "télépopmusik", "thrice", "65daysofstatic", "céline dion", "seether", "clap your hands say yeah", "epica", "duran duran", "jamie cullum", "king crimson", "against me!", "paradise lost", "eddie vedder", "electric light orchestra", "a-ha", "fugazi", "at the drive-in", "lynyrd skynyrd", "enrique iglesias", "squarepusher", "siouxsie and the banshees", "mötley crüe", "backstreet boys", "mike oldfield", "the crystal method", "machine head", "jurassic 5", "vangelis", "stone temple pilots", "gym class heroes", "reel big fish", "okkervil river", "usher", "various artists", "booka shade", "wilco", "joanna newsom", "bat for lashes", "róisín murphy", "lykke li", "funeral for a friend", "enter shikari", "antonio vivaldi", "trentemøller", "the dandy warhols", "four tet", "cocteau twins", "the kills", "n*e*r*d", "matisyahu", "stereolab", "nada surf", "minus the bear", "ska-p", "die toten hosen", "stratovarius", "cream", "jens lekman", "the sounds", "the jesus and mary chain", "fergie", "james morrison", "kreator", "dredg", "danny elfman", "ayreon", "joni mitchell" };

            //var topIndices = new int[top.Length];
            //for (var i = 0; i < topIndices.Length; i++)
            //    topIndices[i] = artistIndexLookupTable.IndexOf(top[i]);

            var loader = new ModelLoader <ISvdModel>();

            loader.ModelPartLoaders.Add(new SvdModelPartLoader());
            ISvdModel model = new SvdModel();

            loader.LoadModel(model, @"D:\dataset\models\model.rs");

            //for (var i = 0; i < topIndices.Length; i++)
            //    Write(string.Format("{0}\t{1}\t{2}", top[i], model.ArtistFeatures[0, topIndices[i]], model.ArtistFeatures[1, topIndices[i]]));

            for (var i = 0; i < artistCount.Length; i++)
            {
                if (model.ArtistFeatures[0, i] != 0.1f && model.ArtistFeatures[1, i] != 0.1f)
                {
                    Write(string.Format("{0}\t{1}\t{2}\t{3}", artists[i].Name, artistCount[i], model.ArtistFeatures[0, i], model.ArtistFeatures[1, i]), false);
                }
            }

            //var ratingsByArtists = new int[artists.Count];
            //var artistCount = new int[artists.Count];
            //foreach (var rating in ratings)
            //{
            //    ratingsByArtists[rating.ArtistIndex] += (int)rating.Value;
            //    artistCount[rating.ArtistIndex]++;
            //}

            //for (var i = 0; i < ratingsByArtists.Length; i++)
            //{
            //    Write(string.Format("{0}\t{1}\t{2}\t{3}", artists[i].Name, ratingsByArtists[i], artistCount[i], (float)ratingsByArtists[i] / (float)artistCount[i]), false);
            //}

            //foreach (var c in dict.OrderByDescending(d => d.Value))
            //    Write(string.Format("{0}\t{1}", c.Key, c.Value), false);

            /*InitializeWriter(@"d:\dataset\da\users-by-ratings.tsv");
             *
             * var users = UserProvider.Load(DataFiles.Users);
             * //var ratings = RatingProvider.Load(DataFiles.Playcounts);
             *
             * var ratingsByUsers = new int[users.Count];
             * foreach (var rating in ratings)
             *  ratingsByUsers[rating.UserIndex] += (int)rating.Value;
             *
             * dict = new Dictionary<string, int>();
             * for (var i = 0; i < ratingsByUsers.Length; i++)
             *  dict.Add(users[i].UserId, ratingsByUsers[i]);
             *
             * foreach (var c in dict.OrderByDescending(d => d.Value))
             *  Write(string.Format("{0}\t{1}", c.Key, Math.Log10(c.Value)), false);*/

            //Console.WriteLine("All");
            //RatingHistogram(DataFiles.EqualFerquencyFiveScaleRatings);

            //Console.WriteLine("Train");
            //RatingHistogram(DataFiles.TrainEqualFerquencyFiveScaleRatings);

            //Console.WriteLine("Test");
            //RatingHistogram(DataFiles.TestEqualFerquencyFiveScaleRatings);

            Console.WriteLine("DONE!");
            Console.ReadLine();
        }