並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 56件

新着順 人気順

guidanceの検索結果1 - 40 件 / 56件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

guidanceに関するエントリは56件あります。 securityMicrosoftセキュリティ などが関連タグです。 人気エントリには 『意外と知られてない?AWS Prescriptive Guidance(AWS規範的ガイダンス)めっちゃ使えるよ | DevelopersIO』などがあります。
  • 意外と知られてない?AWS Prescriptive Guidance(AWS規範的ガイダンス)めっちゃ使えるよ | DevelopersIO

    AWS Prescriptive Guidance(AWS規範的ガイダンス)について紹介されているものが少なったので、ひょっとして未だ認知度低いんじゃないか?ということで紹介したいと思います! AWS Prescriptive Guidance(AWS規範的ガイダンス) Amazon Web Services (AWS) Prescriptive Guidance provides time-tested strategies, guides, and patterns to help accelerate your cloud migration, modernization, and optimization projects. These resources were developed by AWS technology experts and the global communi

      意外と知られてない?AWS Prescriptive Guidance(AWS規範的ガイダンス)めっちゃ使えるよ | DevelopersIO
    • ChatGPT APIを取り巻くライブラリ 〜LangChainとguidanceの紹介 | gihyo.jp

      こんにちは! 逆瀬川(@gyakuse)です! 前回はOpenAIが公開しているChat APIとWhisper APIを用いて議事録文字起こしアプリケーションを作ってみました。今回は、Chat APIを便利に使うためのライブラリであるLangChainとguidanceを紹介していきます。 なぜ便利に使うためのライブラリが必要なのか? 単純にChat APIにリクエストを送るだけであれば、各言語に用意されたライブラリを使うだけで良いでしょう。たとえば、Pythonにおいてはopenai-pythonが用意されています。前回紹介したとおり、Chat APIを使うだけなら以下のようなリクエストを作るだけで済みます。 import openai openai.api_key = "sk-..." # APIキー completion = openai.ChatCompletion.create

        ChatGPT APIを取り巻くライブラリ 〜LangChainとguidanceの紹介 | gihyo.jp
      • Best practices for using the Terraform AWS Provider - AWS Prescriptive Guidance

        Michael Begin, Senior DevOps Consultant, Amazon Web Services (AWS) May 2024 (document history) Managing infrastructure as code (IaC) with Terraform on AWS offers important benefits such as improved consistency, security, and agility. However, as your Terraform configuration grows in size and complexity, it becomes critical to follow best practices to avoid pitfalls. This guide provides recommended

        • GitHub - guidance-ai/guidance: A guidance language for controlling large language models.

          Note that v0.1 is a dramatically new version developed while releases had to be paused over the summer. If you are looking for the old version based on handlebars, you can use v0.0.64, but you should instead try porting over to the much better new version :) guidance is a programming paradigm that offers superior control and efficiency compared to conventional prompting and chaining. It allows use

            GitHub - guidance-ai/guidance: A guidance language for controlling large language models.
          • LLMアプリケーションの新定番、Microsoft guidanceライブラリのgenメソッドを詳細に追ってみる|mah_lab / 西見 公宏

            MicrosoftのguidanceライブラリはLLMアプリケーションを作成する際の新たな定番となりそうな気がしています。そういう訳で、今回はguidanceのgenメソッドについて詳しく追ってみたいと思います。 基本的な使い方import guidance gpt3 = guidance.llms.OpenAI("text-davinci-003") gpt3_5 = guidance.llms.OpenAI("gpt-3.5-turbo") gpt4 = guidance.llms.OpenAI("gpt-4", api_key=API_KEY) guidance.llm = gpt3まずはguidanceライブラリを読み込み、使用するLLMを宣言します。OpenAI APIを使用する場合、初期化パラメータとして以下のパラメータを使用できます。 model 使用するモデルの名前を指定し

              LLMアプリケーションの新定番、Microsoft guidanceライブラリのgenメソッドを詳細に追ってみる|mah_lab / 西見 公宏
            • Choosing an infrastructure as code tool for your organization - AWS Prescriptive Guidance

              Choosing an infrastructure as code tool for your organization Amazon Web Services (AWS) February 2024 (document history) Infrastructure as code (IaC) is the process of provisioning and managing an application's infrastructure through a set of configuration files. IaC is designed to help you centralize infrastructure management, standardize resources, and scale quickly so that new environments are

              • YZERR - guidance (舐達麻 ジャパニーズマゲニーズDiss) Official video

                YZERR - guidanceのMusic Videoが公開 BAD HOP LAST ALBUM “BAD HOP” 2024.02.09 FRI. RELEASE 🎤BAD HOP解散ライブ詳細 “BAD HOP THE FINAL at TOKYO DOME” 場所:東京ドーム 日程:2024年2月19日(月) 時間:16:00(開場)/ 18:00(開演)/ 20:30(終演予定) 東京ドームチケット一般販売中!! https://badhopofficial.com/ 「YZERR - guidance」 [1 Verse] 羽田までのフライト 歌詞を溜めるiPhone 空の上で地に足つけ乗せる俺のプライド メッキが剥がれ逃げ出す 焦ってお前は曲出す ワンバース3人を殺す パンチラインはまるでadidas 面を見たら思い出す 解決してねえ問題 俺の事をやるんだろ? 胸

                  YZERR - guidance (舐達麻 ジャパニーズマゲニーズDiss) Official video
                • Langchain・Semantic Kernel・guidanceでエージェント機能を実装して比較してみた。 - Qiita

                  guidance guidanceではエージェント機能は自前で実装する必要があります。 semantic kernelやlanchainではエージェント機能が用意されています。 自前実装可能なので実装の幅は広そうですが、今回は以下のような流れで実装しました。 実行すべき関数のリストをJSON形式で作成=実行計画 実行計画の作成を行うプロンプトにより実装しています。 JSONに含まれる関数を順に呼び出す pythonの関数として実装しています。 ユーザ側でプロンプトやpythonの関数を作成できるため、自由度が高いなと感じました。 あとはあまり抽象化されていないため、機能拡張・メンテナンスなどが楽そうです。 ①ソースコード全文 ソースコード全文 import os import json import guidance # テキスト生成モデル text_llm = guidance.llms

                    Langchain・Semantic Kernel・guidanceでエージェント機能を実装して比較してみた。 - Qiita
                  • GitHub - github/renaming: Guidance for changing the default branch name for GitHub repositories

                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                      GitHub - github/renaming: Guidance for changing the default branch name for GitHub repositories
                    • 画像生成AI「Stable Diffusion」でどれぐらいプロンプト・呪文の指示に従うかを決める「CFG(classifier-free guidance)」とは一体何なのか?

                      入力したプロンプトを基に画像を生成するAI「Stable Diffusion」は一般公開以降、世界中の人々から注目を浴びており、さまざまなツールや応用方法も発表されています。そんなStable Diffusionで画像を生成する際の設定項目には、「画像生成でどれだけプロンプトに従うか」を決める「CFG(classifier-free guidance)スケール」という値があります。 CLASSIFIER-FREE DIFFUSION GUIDANCE.pdf https://arxiv.org/pdf/2207.12598.pdf 【論文解説】OpenAI 『GLIDE』を理解する | 楽しみながら理解するAI・機械学習入門 https://data-analytics.fun/2022/02/13/openai-glide/#toc5 The Road to Realistic Full

                        画像生成AI「Stable Diffusion」でどれぐらいプロンプト・呪文の指示に従うかを決める「CFG(classifier-free guidance)」とは一体何なのか?
                      • NSA Releases Guidance on How to Protect Against Software Memory Safety Issues

                        FORT MEADE, Md. — The National Security Agency (NSA) published guidance today to help software developers and operators prevent and mitigate software memory safety issues, which account for a large portion of exploitable vulnerabilities. The “Software Memory Safety” Cybersecurity Information Sheet highlights how malicious cyber actors can exploit poor memory management issues to access sensitive i

                          NSA Releases Guidance on How to Protect Against Software Memory Safety Issues
                        • General guidance when working as a cloud engineer

                          ../ General guidance when working as a cloud engineer From the depths of the IT world, there are things that you only learn through experience. Here's a list to save you time, get better results and have an overall healthier relationship with your work. Keep in mind that the following list depicts what I have faced through my journey as a cloud engineer. The order has no particular meaning. Tech-r

                          • Updated CDC guidance acknowledges coronavirus can spread through the air | CNN

                            - Source: CNN " data-fave-thumbnails="{"big": { "uri": "https://media.cnn.com/api/v1/images/stellar/prod/221020081930-gupta-screengrab-vpx.jpg?c=16x9&q=h_540,w_960,c_fill" }, "small": { "uri": "https://media.cnn.com/api/v1/images/stellar/prod/221020081930-gupta-screengrab-vpx.jpg?c=16x9&q=h_540,w_960,c_fill" } }" data-vr-video="false" data-show-html=" New Day " data-byline-html=" " data-check-even

                              Updated CDC guidance acknowledges coronavirus can spread through the air | CNN
                            • 米国著作権局のAI生成素材を含む著作物の著作権登録ガイドラインの一部和訳 https://www.copyright.gov/ai/ai_policy_guidance.pdf

                              HumanAuthorshipRequirement.md アメリカ合衆国著作権局 著作権登録ガイダンス:人工知能によって生成された素材を含む著作物について 2023年3月16日(木)発行 16190 FEDERAL REGISTER, VOL. 88, NO. 51 RULES AND REGULATIONS 37 CFR PART 202 アクション:方針表明 概要:著作権局は、人工知能技術の使用により生成された素材を含む著作物の審査および登録に関する実務を明確にするために、この方針表明を発表します。 日付:この方針表明は2023年3月16日に発効します。 FOR FURTHER INFORMATION CONTACT: Rhea Efthimiadis, Assistant to the General Counsel, by email at meft-AT-copyright.g

                                米国著作権局のAI生成素材を含む著作物の著作権登録ガイドラインの一部和訳 https://www.copyright.gov/ai/ai_policy_guidance.pdf
                              • GPT-4 と Guidance で記事の要約をしてバズるTweetを作成+投稿するbotの作成ガイド - Qiita

                                はじめに こんにちは、@ekusiadadusです。 今回は、GPT-4 を使って記事の要約をしてバズる Tweet を作成+投稿する bot の作り方を紹介します。 特に、GPT-4 を使用して Tweet の記事を要約する箇所に関しては、Microsoft が最近公開したGuidanceを使用しています。 一般的には、LangChain を使う人が多いと思いますが、興味で Guidance を使ってみました。 使用する主な技術は以下の通りです: OpenAI GPT-4 ChatGPT Plugins Python Tweepy Twitter API Guidance 手順 with ChatGPT Plugins 手順の解説 基本的には、ほとんど上の通りなのですが、一部記事にランキングを付けて、ランキングの高い記事を GPT-4 に要約してもらうようにしています。 この箇所は、今回

                                  GPT-4 と Guidance で記事の要約をしてバズるTweetを作成+投稿するbotの作成ガイド - Qiita
                                • NSA, CISA release Kubernetes Hardening Guidance > National Security Agency Central Security Service > Article View

                                  FORT MEADE, Md.  – The National Security Agency (NSA) and the Cybersecurity and Infrastructure Security Agency (CISA) released a Cybersecurity Technical Report, “Kubernetes Hardening Guidance,” today. This report details threats to Kubernetes environments and provides configuration guidance to minimize risk. Kubernetes is an open source system that automates the deployment, scaling, and management

                                    NSA, CISA release Kubernetes Hardening Guidance > National Security Agency Central Security Service > Article View
                                  • Guidance for preventing, detecting, and hunting for exploitation of the Log4j 2 vulnerability | Microsoft Security Blog

                                    January 10, 2022 recap – The Log4j vulnerabilities represent a complex and high-risk situation for companies across the globe. This open-source component is widely used across many suppliers’ software and services. By nature of Log4j being a component, the vulnerabilities affect not only applications that use vulnerable libraries, but also any services that use these applications, so customers may

                                      Guidance for preventing, detecting, and hunting for exploitation of the Log4j 2 vulnerability | Microsoft Security Blog
                                    • Cloud design patterns, architectures, and implementations - AWS Prescriptive Guidance

                                      Cloud design patterns, architectures, and implementations Anitha Deenadayalan, Amazon Web Services (AWS) February 2024 (document history) This guide provides guidance for implementing commonly used modernization design patterns by using AWS services. An increasing number of modern applications are designed by using microservices architectures to achieve scalability, improve release velocity, reduc

                                      • May 16, 2022 GUIDANCE ON THE DEMOCRATIC PEOPLE’S REPUBLIC OF KOREA INFORMATION TECHNOLOGY WORKERS

                                        An official website of the United States government Here’s how you know The .gov means it’s official. Federal government websites often end in .gov or .mil. Before sharing sensitive information, make sure you’re on a federal government site. The site is secure. The https:// ensures that you are connecting to the official website and that any information you provide is encrypted and transmitted sec

                                        • /blog/2022/05/guidance-for-cve-2022-30190-microsoft-support-diagnostic-tool-vulnerability-jp/

                                          • Dependency Injection Guidance on Android — ADS 2019

                                            According to our introduction to Dependency Injection (DI), we believe you should always use DI principles in your applications. If you’re developing a professional Android app, use Dagger to better manage your dependencies. We recommended using Dagger for medium and large apps; for small apps or pet projects, it doesn’t matter the tool you use, but the sooner you add Dagger to your project, the b

                                              Dependency Injection Guidance on Android — ADS 2019
                                            • 【必見】Kubernetesのセキュリティガイダンス、「Kubernetes Hardening Guidance」をアメリカ国家安全保障局(NSA)が発表

                                                【必見】Kubernetesのセキュリティガイダンス、「Kubernetes Hardening Guidance」をアメリカ国家安全保障局(NSA)が発表
                                              • OSTP Issues Guidance to Make Federally Funded Research Freely Available Without Delay | OSTP | The White House

                                                Today, the White House Office of Science and Technology Policy (OSTP) updated U.S. policy guidance to make the results of taxpayer-supported research immediately available to the American public at no cost. In a memorandum to federal departments and agencies, Dr. Alondra Nelson, the head of OSTP, delivered guidance for agencies to update their public access policies as soon as possible to make pub

                                                  OSTP Issues Guidance to Make Federally Funded Research Freely Available Without Delay | OSTP | The White House
                                                • SAGE updates COVID-19 vaccination guidance

                                                  Following its 20-23 March meeting, WHO’s Strategic Advisory Group of Experts on Immunization (SAGE) revised the roadmap for prioritizing the use of COVID-19 vaccines, to reflect the impact of Omicron and high population-level immunity due to infection and vaccination. The roadmap continues SAGE’s prioritization of protecting populations at the greatest risk of death and severe disease from SARS-Co

                                                  • 生成AIの評価手法〜LangChain, guidance, Azure AI Studioの比較・統合|Ray | 旅する魔法使い

                                                    生成AIの評価手法〜LangChain, guidance, Azure AI Studioの比較・統合 生成AIを活用したアプリケーション開発が急増しています。そんな中、開発におけるプロンプト・チューニングの手法は広まりましたが、テストについての知見は情報が散在しています。 そこで、生成AIアプリケーションの開発ツールとして注目されている、LangChain, guidance, Azure AI Studioを比較しながら、ツールに依存しない評価手法として統合していきます。(GoogleのGenerative AI Studioも要注目ですが、現時点では評価機能が弱いので対象外) なぜ生成AIアプリケーションの評価が重要なのか? なにを評価するのか? どのように評価するのか? はじめに生成AIの基盤モデルである、GPT-4、Gemini、Llama2などの基礎性能を比較する上では、一般

                                                      生成AIの評価手法〜LangChain, guidance, Azure AI Studioの比較・統合|Ray | 旅する魔法使い
                                                    • SpringShell RCE vulnerability: Guidance for protecting against and detecting CVE-2022-22965 | Microsoft Security Blog

                                                      April 11, 2022 update – Azure Web Application Firewall (WAF) customers with Regional WAF with Azure Application Gateway now has enhanced protection for critical Spring vulnerabilities – CVE-2022-22963, CVE-2022-22965, and CVE-2022-22947. See Detect and protect with Azure Web Application Firewall (Azure WAF) section for details. On March 31, 2022, vulnerabilities in the Spring Framework for Java we

                                                        SpringShell RCE vulnerability: Guidance for protecting against and detecting CVE-2022-22965 | Microsoft Security Blog
                                                      • AWS Prescriptive Guidance

                                                        Amazon Web Services (AWS) Prescriptive Guidance provides time-tested strategies, guides, and patterns to help accelerate your cloud migration, modernization, and optimization projects. These resources were developed by AWS technology experts and the global community of AWS Partners, based on their years of experience helping customers realize their business objectives on AWS.

                                                          AWS Prescriptive Guidance
                                                        • /blog/2022/09/customer-guidance-for-reported-zero-day-vulnerabilities-in-microsoft-exchange-server/

                                                          • Federal Register | Copyright Registration Guidance: Works Containing Material Generated by Artificial Intelligence | A Rule by the Copyright Office, Library of Congress on 03/16/2023

                                                            Due to aggressive automated scraping of FederalRegister.gov and eCFR.gov, programmatic access to these sites is limited to access to our extensive developer APIs. If you are human user receiving this message, we can add your IP address to a set of IPs that can access FederalRegister.gov & eCFR.gov; complete the CAPTCHA (bot test) below and click "Request Access". This process will be necessary for

                                                            • Guidance for investigating attacks using CVE-2023-23397 | Microsoft Security Blog

                                                              February 15, 2024 update – On January 20, 2024, the US government conducted a disruption operation against infrastructure used by a threat actor we track as Forest Blizzard (STRONTIUM), a Russian state-sponsored threat actor, as detailed here: https://www.justice.gov/opa/pr/justice-department-conducts-court-authorized-disruption-botnet-controlled-russian December 4, 2023 update – Microsoft has ide

                                                                Guidance for investigating attacks using CVE-2023-23397 | Microsoft Security Blog
                                                              • Microsoftのguidanceの日本語まとめ|にょす

                                                                MicrosoftがguidanceというLangChainのオルタナティブとなるかもしれないOSSを発表しました。 Readmeを参考に、内容を日本語でまとめていきます。 GuidanceとはGuidanceは、従来のプロンプトやCoTよりも、現代の言語モデルを効果的かつ効率的に制御することができます。Guidanceのプログラムを使うと、生成、プロンプト、論理制御を一つの連続した流れに組み込むことができます。 これは、言語モデルが実際にテキストを処理している方法に適合しています。Chain of Thought やその多くのバリエーション(例えば、ART、Auto-CoT など)のようなシンプルな出力構造は、LLM の性能向上に役立つことが示されています。GPT-4 のようなより高性能なLLMの登場により、さらに豊かな構造が可能となり、ガイダンスを使えばその構造をより簡単かつ安価に実現

                                                                  Microsoftのguidanceの日本語まとめ|にょす
                                                                • Using architectural decision records to streamline technical decision-making for a software development project - AWS Prescriptive Guidance

                                                                  Using architectural decision records to streamline technical decision-making for a software development project Darius Kunce and Dominik Goby, Amazon Web Services (AWS) March 2022 (document history) This guide introduces the architectural decision records (ADR) process for software engineering projects. ADRs support team alignment, document strategic directions for a project or product, and reduce

                                                                  • /blog/2022/09/customer-guidance-for-reported-zero-day-vulnerabilities-in-microsoft-exchange-server-ja/

                                                                    • No private jets, no helicopters, and a bus to Westminster Abbey: VIP guidance for queen’s funeral revealed

                                                                      On the day of the funeral, the heads of state and their partners will arrive at Westminster Abbey in escorted coaches | Pooled photo by Richard Pohle/AFP via Getty Images LONDON — Foreign heads of state and their spouses heading to London for the state funeral for Queen Elizabeth II have been asked to arrive in the U.K. on commercial flights and banned from using helicopters to get around. World l

                                                                        No private jets, no helicopters, and a bus to Westminster Abbey: VIP guidance for queen’s funeral revealed
                                                                      • Guidance for Cell-Based Architecture on AWS

                                                                        This Guidance helps customers understand the concepts of implementing a cell-based architecture. This architecture shows fault isolation between cells, which are independent replicas of the system. Customers can use this Guidance to prevent outages caused by a software bug, failed deployment, or overload, ultimately reducing the impact to end-customers.

                                                                          Guidance for Cell-Based Architecture on AWS
                                                                        • ADV200001 | Microsoft Guidance on Scripting Engine Memory Corruption Vulnerability

                                                                          • LangChainの対抗馬?Microsoft Guidanceを触ってみる (2) - Qiita

                                                                            ①Guidanceってなに? Guidanceは、今後さらに複雑になるであろうプロンプト開発を見越しているものと捉えています。(私の主観が入っていますが) またユーザ目線で考えると、複雑なプロンプトを実行するとその分料金が発生します。複雑なプロンプトを簡略化できれば費用も抑えられますよね。 ガイダンスプログラムは、従来のプロンプティングやチェイン法よりも効果的かつ効率的に現代の言語モデルを制御することを可能にします。ガイダンスは、言語モデルがテキストを処理する方法と実際に一致するように、生成、プロンプティング、論理的な制御を連続した流れで組み合わせることができます。Chain of Thoughtやその他のバリエーション(ART、Auto-CoTなど)などのシンプルな出力構造は、言語モデルの性能を向上させることが示されています。よりパワフルなGPT-4の登場により、さらに豊かな構造が可能に

                                                                              LangChainの対抗馬?Microsoft Guidanceを触ってみる (2) - Qiita
                                                                            • Guidance on the North Korean Cyber Threat | CISA

                                                                              The U.S. Departments of State, the Treasury, and Homeland Security, and the Federal Bureau of Investigation are issuing this advisory as a comprehensive resource on the North Korean cyber threat for the international community, network defenders, and the public. The advisory highlights the cyber threat posed by North Korea – formally known as the Democratic People’s Republic of Korea (DPRK) – and

                                                                              • NSA Releases Guidance on Eliminating Obsolete TLS Protocol Configurations | CISA

                                                                                Official websites use .gov A .gov website belongs to an official government organization in the United States. Secure .gov websites use HTTPS A lock (A locked padlock) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

                                                                                • International Guidance on Preventing Long Covid

                                                                                  Governments around the world are recommending avoiding Long Covid by preventing COVID-19 infections. Long Covid is the name given to more than 200 symptoms that can follow acute COVID-19. Long Covid can impact daily functioning and symptoms can last for weeks, months or years1. The causes of Long Covid are unclear, but viral persistence and immune dysfunction might be implicated in the condition2.

                                                                                    International Guidance on Preventing Long Covid

                                                                                  新着記事