Page 2 of 2 FirstFirst 12
Results 26 to 48 of 48

Thread: hwbot develops

  1. #26
    Xtreme Enthusiast
    Join Date
    Apr 2004
    Location
    Cornwall/Leeds UK
    Posts
    970
    Anyway to choose the results shown on the HWbot sig?
    .:. X2 @ 2.9 .:. E6600 L628 @ 4.73 .:. AB9 @ 512 FSB .:. E6300 @ 100% OC Stable

    U.K. overclockers: Represent your country, bench for EP-UK! Unite and show the world there IS a U.K. scene!



  2. #27
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    Well, we've built a complex algorithm to make sure your most interesting results would show up, but you can choose them manually too, yes.
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  3. #28
    Xtreme Enthusiast
    Join Date
    Apr 2004
    Location
    Cornwall/Leeds UK
    Posts
    970
    Quote Originally Posted by RichBa5tard
    Well, we've built a complex algorithm to make sure your most interesting results would show up, but you can choose them manually too, yes.
    How does one go about that?

    Cheers mate
    .:. X2 @ 2.9 .:. E6600 L628 @ 4.73 .:. AB9 @ 512 FSB .:. E6300 @ 100% OC Stable

    U.K. overclockers: Represent your country, bench for EP-UK! Unite and show the world there IS a U.K. scene!



  4. #29
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    I'll save you from dumping the source code here, so I'll try to explain it in pseudo code.

    first, calculate the 'weight' of a ranking (application). The more ppl participate in a ranking, the more 'points' a good rank will get you.

    Code:
    weight = max{ min{(participants in ranking / 1000), 0.5}, 2}
    There's a range of 0.5 to 2, so unpopular benchmarks are still worth a little bit and very popular benchmarks will not give you an insame amount of points. eg. superpi 'points' will be multiplied by 2, but sisoft sandra by 0.5.

    Then the actual algorithm for calculating points of your submitted result comes in. You can recieve points on 2 aspects: the global rank of your score, and the hardware rank of your score. The hardware rank is worth much less, but it's fun that you still recieve some points because you have the (second, third, fourth or fift) fastest videocard / processor in 3dmark/superpi/...

    global ranking points
    Code:
    int points;
            switch (rank) {
            case 1:
                points = (int) (50 * weight);
                break;
            case 2:
                points = (int) (40 * weight);
                break;    
            case 3:
                points = (int) (35 * weight);
                break;    
            case 4:
                points = (int) (30 * weight);
                break;
            case 5:
                points = (int) (25 * weight);
                break;
            default:
                points = (int) (((-20/145f)*rank + (600f/29f))*weight);
                break;
            }
    weight = the importance of a ranking. for exact value, look at calculation above.

    hardware ranking points
    Code:
    float saturation = 100;
            int points;
            switch (hardware rank) {
            case 1:
                points = (int) (5f * Math.min( Math.max(((float)participants / saturation), 0.2f), 1f) * Math.max(weight, 1f));
                break;
            case 2:
                points = (int) (4f * Math.min( Math.max(((float)participants / saturation), 0.2f), 1f) * Math.max(weight, 1f));
                break;    
            case 3:
                points = (int) (3f * Math.min( Math.max(((float)participants / saturation), 0.2f), 1f) * Math.max(weight, 1f));
                break;    
            case 4:
                points = (int) (2f * Math.min( Math.max(((float)participants / saturation), 0.2f), 1f) * Math.max(weight, 1f));
                break;
            case 5:
                points = (int) (1f * Math.min( Math.max(((float)participants / saturation), 0.2f), 1f) * Math.max(weight, 1f));
                break;
            default:
                points = 0;
                break;
            }
    The more ppl who have the same videocard/processor as you and submitted a result for the same ranking (application), the more your hardware rank is worth.

    The total score of your submitted result is the sum of both global and hardware ranking points. The results shown in your pic will be your results with the highest points.

    Keep in mind the algoritm isn't final yet. We're probably going to lower the global ranking points a bit, or increase the hw points. We're testrunning it at the moment, as points are only visible for the crew.
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  5. #30
    Xtreme Enthusiast
    Join Date
    Apr 2004
    Location
    Cornwall/Leeds UK
    Posts
    970
    ahhh nice That'd explain why things changed the other day

    How can you specify what you want to see?
    .:. X2 @ 2.9 .:. E6600 L628 @ 4.73 .:. AB9 @ 512 FSB .:. E6300 @ 100% OC Stable

    U.K. overclockers: Represent your country, bench for EP-UK! Unite and show the world there IS a U.K. scene!



  6. #31
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    When you create your avatar / signature, you have to choose between "automatic" and "selected results"
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  7. #32
    Xtreme Cruncher
    Join Date
    Apr 2006
    Location
    Finland
    Posts
    189
    Quote Originally Posted by RichBa5tard
    I'll save you from dumping the source code here, so I'll try to explain it in pseudo code.
    Now did you really?

    Quote Originally Posted by RichBa5tard
    global ranking points
    Code:
    int points;
            switch (rank) {
            case 1:
                points = (int) (50 * weight);
                break;
            case 2:
                points = (int) (40 * weight);
                break;    
            case 3:
                points = (int) (35 * weight);
                break;    
            case 4:
                points = (int) (30 * weight);
                break;
            case 5:
                points = (int) (25 * weight);
                break;
            default:
                points = (int) (((-20/145f)*rank + (600f/29f))*weight);
                break;
            }
    Forgetting the weight and rounding, first place gives fifty points, second 40,..., 25 points for fifth place, and from sixth to 150th place points go down linearly (with a formula that would give 20 points at fifth place and 0 at 150).

    Quote Originally Posted by RichBa5tard
    Keep in mind the algoritm isn't final yet. We're probably going to lower the global ranking points a bit, or increase the hw points. We're testrunning it at the moment, as points are only visible for the crew.
    The definitions given by rb aren't even the current ones. We will post the final specs somewhere when we are done with the testing.

  8. #33
    Xtreme Cruncher
    Join Date
    Apr 2006
    Location
    Finland
    Posts
    189
    Quote Originally Posted by RichBa5tard
    Well, we've built a complex algorithm to make sure your most interesting results would show up, but you can choose them manually too, yes.
    Any chance of putting this to work too?

  9. #34
    Xtreme Enthusiast
    Join Date
    Apr 2004
    Location
    Cornwall/Leeds UK
    Posts
    970
    Quote Originally Posted by RichBa5tard
    When you create your avatar / signature, you have to choose between "automatic" and "selected results"
    Am I being dumb - where is the option to do this, or is this still a WIP feature?

    Cheers
    .:. X2 @ 2.9 .:. E6600 L628 @ 4.73 .:. AB9 @ 512 FSB .:. E6300 @ 100% OC Stable

    U.K. overclockers: Represent your country, bench for EP-UK! Unite and show the world there IS a U.K. scene!



  10. #35
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    It's not made public yet, only available for crew. Sorry.
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  11. #36
    Xtreme Enthusiast
    Join Date
    Apr 2004
    Location
    Cornwall/Leeds UK
    Posts
    970
    Quote Originally Posted by RichBa5tard
    It's not made public yet, only available for crew. Sorry.
    Ah no worries mate Looking forward to the feature when its out
    .:. X2 @ 2.9 .:. E6600 L628 @ 4.73 .:. AB9 @ 512 FSB .:. E6300 @ 100% OC Stable

    U.K. overclockers: Represent your country, bench for EP-UK! Unite and show the world there IS a U.K. scene!



  12. #37
    Xtreme Enthusiast
    Join Date
    Feb 2005
    Location
    Belgium
    Posts
    823
    I have a quetion here, might be simple to fix. When I search for 3d mark results, could there be an option to watch non SLI scores only? I know where the other top scores of my card are around, but would be a lot easier for me (and for others I guess) if we could just search non sli/crossfire scores.

  13. #38
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    Okay, i've added it to the todo list, i'll let you know when it has been added.
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  14. #39
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    Quote Originally Posted by wittekakker
    I have a quetion here, might be simple to fix. When I search for 3d mark results, could there be an option to watch non SLI scores only? I know where the other top scores of my card are around, but would be a lot easier for me (and for others I guess) if we could just search non sli/crossfire scores.
    Your request has been implemented in the development version, I'll try to upload it tonight.
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  15. #40
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    wittekakker, your request has been implemented!

    http://www.hwbot.org/searchResults.do
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  16. #41
    Xtreme Cruncher
    Join Date
    Apr 2006
    Location
    Finland
    Posts
    189
    rb does not have to much spare time from work atm, so some of the promised updates (overall competition, sig pics, hwbot multipi) will have to wait a little, prolly not very long tho.

    We got some bug fixes yesterday:
    - uploading images, some mimetypes are not excepted
    - user personal results page, display the best (first sort on score, than start to filter for duplicates instead of other way around)
    - display verification image at all time (currently only when verification url is entered too)
    Also some of the stats views have been updated recently.

  17. #42
    I am Xtreme
    Join Date
    Jan 2005
    Posts
    4,714
    We've reached the milestone of 15,000 results.

    http://www.hwbot.org/newsLink.do?newsPostId=285257

    At the end of this year, we should be at 20k at least :p
    Where courage, motivation and ignorance meet, a persistent idiot awakens.

  18. #43
    Xtreme Enthusiast
    Join Date
    Feb 2005
    Location
    Belgium
    Posts
    823
    Quote Originally Posted by RichBa5tard
    wittekakker, your request has been implemented!

    http://www.hwbot.org/searchResults.do


    Thank you RB!

    PS: Works like a charme

  19. #44
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880
    No problem!

    I added a features that generates bbcode or html so that you can copy&paste a thumbnail of your result easily into your forum or blog. : )



    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  20. #45
    Xtreme Cruncher
    Join Date
    Apr 2006
    Location
    Finland
    Posts
    189
    The personal overall competition should be up and running in a few days. imo this is one of the coolest features of hwbot to date. No other site has anything like this, at least with a reasonable definition.

  21. #46
    Xtreme Addict
    Join Date
    Jul 2002
    Location
    [M] - Belgium
    Posts
    1,744
    some of the new charts and features are just too cool

    http://hwbot.org/result.do?resultId=545030



    Belgium's #1 Hardware Review Site and OC-Team!

  22. #47
    hwbot crew
    Join Date
    Jun 2002
    Location
    Belgium!
    Posts
    880

    hwbot v2.0

    hwbot v2.0 development topic

    Early look on new hwbot layout:


    polished hardware comparator. manufacturer colors for easy recognition:


    polished submission pages:


    memory, motherboard and cooling info added to submission pages:


    hwbot engine v2.0 mascot:



    I have a robot fetish
    HTPC (win xp): Turion MT-30 @ 2Ghz | NF4 | XFX 7900GT | 26" TFT
    Development (mac osx): Macbook Pro | Core Duo 1.86Ghz | 1.5GB DDR2


  23. #48
    Xtreme Enthusiast
    Join Date
    Feb 2005
    Location
    Belgium
    Posts
    823
    Nice teaser

Page 2 of 2 FirstFirst 12

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •