Connect with us

News

Working on a new theme called WordCult

Published

on

So I have been really busy, and haven’t been able to put up a new post since I got back from WordCamp Denver.

WordCult Screenshot

WordCult Screenshot

Working on some clients site’s and also a WordPress theme!

I have finished about 80% of the theme which is based off my current theme located on my personal blog site: TheFrosty. TheFrosty is using version 0.1 of the theme, which has many faults and bugs. I have fixed many of them, and probably added a few others.

In version 0.2 I’ve added a new jQuery “featured posts” loader and the option for sticky posts. I have also fixed a lot of CSS errors, it should W3C comply :).

Also in the newer version I have tried to add more to the admin panel, in ways of options.

If you would like to download this theme and test it out before I release it to the community please let me know. I would love to get some feedback or ideas on what you’ve got to say. Just use the contact form or send me a message on Twitter.

Download it:

[download#2#format=1]
[download#1#format=1]
Download Version 0.3

Once you’ve got the theme..

Let me know what you think! Leave you comments and feedback. I am also trying to get a forum up on the site as well.
Thanks!
Frosty

Update for 0.2:

I’ve updated my personal site: TheFrosty to the latest version of WordCult (0.2). I’ve already found some small bugs and CSS fixes that need to be taken care of. Also I don’t think that the Adsense display is working correctly.
If you’ve noticed any issues please contact me or leave a comment.

 

Update for 0.2.1:

The new version, 0.2.1 brings in some integration from Justin Tadlocks Widgets Reloaded plugin. It’s fully integrated into the theme. So you’ll notice some widgets disappear and be replaced by others. If you need to get them back Justin makes a plugin that will “release” the old widgets on your new theme install.

 

Update: 0.3

Get the newest version of WordCult, download Version 0.3 from this page.

News

Microsoft’s Orca 2: Revolutionizing AI with Compact Language Models

Microsoft’s Orca 2 is a groundbreaking AI language model that has made significant strides in efficiency and performance. The models, with 7 billion and 13 billion parameters, have matched or surpassed the capabilities of larger models, like Meta’s Llama-2 Chat-70B, in complex reasoning tasks and zero-shot scenarios. This achievement underscores Microsoft’s effectiveness in AI research and development.

Orca 2’s ability to outperform larger models is attributed to innovative training methods and improved signals. The models have been trained on a tailored synthetic dataset and can choose different solution strategies for different tasks. Despite its breakthroughs, Orca 2 inherits certain limitations from its base models, such as potential data biases and lack of contextual understanding.

Microsoft’s decision to open-source Orca 2 models demonstrates its commitment to fostering collaboration and further research in AI. This move is expected to accelerate progress in developing and evaluating smaller language models. Orca 2’s release also democratizes AI accessibility, providing organizations of all sizes with a more accessible alternative to state-of-the-art natural language processing without the need for significant computational investments.

The introduction of Orca 2 serves as a reminder of the limitless potential of innovation in the AI landscape. Microsoft’s commitment to pushing the boundaries of AI research is poised to reshape how businesses approach natural language processing and reasoning tasks. With the integration of OpenAI talent and strategic vision, Microsoft is set to further bolster the capabilities and development of language models like Orca 2, potentially reshaping the landscape of AI technology and its applications.

Published

on

By

Orca 2

In a groundbreaking move, Microsoft, under Satya Nadella’s leadership, introduced Orca 2. Amidst the dynamic shifts within the AI research community, including significant events at OpenAI, Microsoft has remained steadfast in its AI endeavors. Orca 2, comprising models with 7 billion and 13 billion parameters, has made a splash by either matching or surpassing the capabilities of larger models, like Meta’s Llama-2 Chat-70B, particularly in complex reasoning tasks and zero-shot scenarios.

The Emergence and Impact of Orca 2

Orca 2 is an incremental update and represents a substantial leap forward in AI language modeling. Building on the original 13-billion-parameter Orca model, Orca 2 has demonstrated remarkable reasoning abilities, imitating the step-by-step processes of larger models. This has been achieved through innovative training methods and improved signals, enabling these smaller models to achieve reasoning capabilities typically reserved for their larger counterparts.

Orca 2’s ability to outperform much larger models in specific tasks is a testament to Microsoft’s efficiency in research and development within AI. The models have been put through rigorous testing on diverse benchmarks covering language understanding, common-sense reasoning, multi-step reasoning, math problem-solving, and reading comprehension. The results show that Orca 2 models significantly surpass those of a similar size and attain performance levels comparable to or better than models ten times larger.

A New Paradigm in AI Research

Microsoft’s decision to open-source both Orca 2 models underscores its commitment to fostering collaboration and further research in AI. This move is expected to accelerate progress in developing and evaluating smaller language models. Orca 2’s release is a boon for enterprises, especially those with limited resources, offering a more accessible alternative to state-of-the-art natural language processing without the need for significant computational investments.

Training Methodologies and Challenges

Orca 2 has been fine-tuned on a highly tailored synthetic dataset derived from the Llama 2 base models. The training data was designed to teach Orca 2 various reasoning techniques, such as step-by-step processing, recall then generate, and direct answer methods. This approach has enabled Orca 2 to choose different solution strategies for other tasks, flexibility not often found in larger models.

Despite its breakthroughs, Orca 2 inherits certain limitations from its base LLaMA 2 model and other large language models. These include potential data biases, lack of contextual understanding, transparency issues, and risks of content harm. Microsoft has recognized these challenges and recommends leveraging content moderation services to mitigate them.

Democratizing AI Accessibility

Microsoft’s release of Orca 2 marks a significant milestone in the democratization of AI, challenging the notion that bigger models are always superior. This development opens up opportunities for organizations of all sizes to harness the power of AI without massive computational resources.

The Future of AI with Orca 2

The AI landscape is continuously evolving, and the introduction of Orca 2 serves as a reminder of the limitless potential of innovation. Microsoft’s commitment to pushing the boundaries of AI research is poised to reshape how businesses approach natural language processing and reasoning tasks. With the integration of OpenAI talent and strategic vision, Microsoft is set to further bolster the capabilities and development of language models like Orca 2, potentially reshaping the landscape of AI technology and its applications.

In conclusion, Orca 2 emerges as a beacon of progress and inclusivity in the AI world. Its potential to empower smaller models to rival their larger counterparts promises a revolution in the AI landscape, offering new possibilities for AI-driven endeavors across various sectors.

Continue Reading

News

WP Cult attending WordCamp Denver 2009

Published

on

It is official, today I purchased my ticket for WordCamp Denver! I as well as Jeana from Jeana Says, will be flying out to Colorado! Now all we need to do is find a place to stay..

Continue Reading

News

How to: Show/Hide any div box with jQuery in WordPress

Published

on

If you take a look at my current sidebar (right) and see the heading Google Search you’ll notice that when you click it the Google Search box show’s into view.

Let me show you how this is done.

First make sure that your WordPress site is calling jQuery, buy pluggin this code into our header.php file above the <?php wp_head(); ?> text:

<?php wp_enqueue_script('jquery'); ?>

Then anywhere above the </head >, plug this code in:

<script type="text/javascript">
jQuery(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  jQuery('#toggle-search').hide();

 // toggles the slickbox on clicking the noted link
  jQuery('a#slick-slidetoggle').click(function() {
	jQuery('#toggle-search').slideToggle(400);
	return false;
  });
});
</script>

That’s simple, huh. Okay now lets write the Search code:

<h2><a href="#" id="slick-slidetoggle">Google Search</a></h2>
	<div id="toggle-search" style="padding:10px;">
    <form method="get" id="search" action="<?php bloginfo('home'); ?>/">
        <div>
            <input type="text" value="Enter Keyword" onclick="this.value='';" name="s" id="s" />
            <input type="text" name="search-button" id="search-button" value="<?php _e('Search') ?>" />
        </div>
    </form>
</div>

That’s it.

Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

Jessica Nigri Net Worth – Hot Gossip and info

Jessica Nigri Net Worth – Hot Gossip and info

Jessica Nigri Net Worth Although she was brought up in New Zealand, Jessica Nigri is from America and she is a cosplay celebrity, voice actress, social media personality, and model. She has a net worth of close to $15. Million. Jessica was born in the U.S. state of Nevada in Reno in August of 1989. […]

Awkwafina Net Worth, Bio, Wiki

Awkwafina Net Worth, Bio, Wiki

Awkwafina net worth Awkwafina is an American artist; She is a comedian, TV personality, actress, and a rapper. Her net worth is $4 million. She was born as Nora Lum in New York City and grew up in Forest Hills, Queens, area of the city. When she was in high school, she played trumpet and […]

True Geordie Net Worth: How Rich the English Podcaster Actually?

True Geordie Net Worth: How Rich the English Podcaster Actually?

Brian Davis, who is better known online as True Geordie, is a British Youtuber. He is best known for his podcast called the True Geordie Podcast along with editor Laurence McKenna where their focus is on interviewing with different Youtubers and Influencers. His channel has a total of 1.7 million subscribers. As of 2019, True […]

Bert Kreischer’s Net Worth: 5+ Things you need to know.

Bert Kreischer’s Net Worth: 5+ Things you need to know.

Bert Kreischer’s Net Worth I could not find a year-by-year breakdown of Bert Kreischer’s net worth from 2015 to 2023. However, I did find different estimates for his net worth in 2023, ranging from $4 million to $14 million​1​​2​​3. In 2022, his net worth was estimated to be $16 million, according to Forbes​4. Other sources […]

Trending