投稿時間:2023-05-16 12:17:29 RSSフィード2023-05-16 12:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 猫型ロボットや教材ロボのElephant Roboticsその他、深センのハードウェアメーカーが「AI・人工知能 EXPO」に出展 https://robotstart.info/2023/05/16/moriyama_mikata-no174.html 猫型ロボットや教材ロボのElephantRoboticsその他、深センのハードウェアメーカーが「AI・人工知能EXPO」に出展シェアツイートはてブ年月日水日金の日程で東京ビッグサイトにて「NexTechWeek春」の一環として「第回AI・人工知能EXPO【春】」が行われた。 2023-05-16 02:27:14
IT ITmedia 総合記事一覧 [ITmedia News] ITに自信がなくてもOK AWSの基礎がわかる学習コンテンツ 公式が日本語で公開 https://www.itmedia.co.jp/news/articles/2305/16/news109.html amazon 2023-05-16 11:42:00
IT ITmedia 総合記事一覧 [ITmedia News] ヤフオク「中古スマホ出品時、マイナ証明書失効を」初期化だけでは消えない https://www.itmedia.co.jp/news/articles/2305/16/news107.html itmedia 2023-05-16 11:33:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 外食大手で増える「卵メニュー休止」、対応は「二極化」 https://www.itmedia.co.jp/business/articles/2305/16/news105.html itmedia 2023-05-16 11:30:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 23区内の「25平米」安い家賃ランキング 2位「葛飾区」、1位は? https://www.itmedia.co.jp/business/articles/2305/16/news102.html itmedia 2023-05-16 11:25:00
IT ITmedia 総合記事一覧 [ITmedia News] マイナ保険証に他人のデータ登録、約7300件 5件で他人の医療情報閲覧される https://www.itmedia.co.jp/news/articles/2305/16/news103.html itmedia 2023-05-16 11:15:00
AWS AWS Japan Blog 高精度な生成系 AI アプリケーションを Amazon Kendra、LangChain、大規模言語モデルを使って作る https://aws.amazon.com/jp/blogs/news/quickly-build-high-accuracy-generative-ai-applications-on-enterprise-data-using-amazon-kendra-langchain-and-large-language-models/ amazonkendra 2023-05-16 02:34:45
python Pythonタグが付けられた新着投稿 - Qiita 【Streamlit】レイアウト(サイドバー/2カラムレイアウト/エクスパンダー) https://qiita.com/LB16B/items/b7984f0419b7dd8d679c agest 2023-05-16 11:49:47
python Pythonタグが付けられた新着投稿 - Qiita python で複数個のピークを自動検出する方法と原理を説明してみた https://qiita.com/yamadasuzaku/items/73fcadeddb3417778b7c 説明 2023-05-16 11:33:56
python Pythonタグが付けられた新着投稿 - Qiita FirebaseのCloudFunctionsでPythonが公式サポートされたので、Flutterで試してみる。 https://qiita.com/tamina_ryosuke/items/f5daf97158143922c799 cloud 2023-05-16 11:26:54
AWS AWSタグが付けられた新着投稿 - Qiita [AWS Q&A 365][Batch]AWSのよくある問題の毎日5選 #58 https://qiita.com/shinonome_taku/items/d171f7dc8a6a19b30e28 awsbatch 2023-05-16 11:15:00
AWS AWSタグが付けられた新着投稿 - Qiita [AWS Q&A 365][Batch]Daily Five Common Questions #58 https://qiita.com/shinonome_taku/items/f00a64c3fcaa0a8c6f7f batch 2023-05-16 11:14:32
海外TECH DEV Community Importing Code in Polyglot Notebooks https://dev.to/integerman/importing-code-in-polyglot-notebooks-1598 Importing Code in Polyglot NotebooksWe ve seen that Polyglot Notebooks allow you to mix together markdown and code including C code in an interactive notebook and these notebooks allow you to share data between cells and between languages However frequently in programming you want to reference code that others have written without having to redefine everything yourself In this article we ll explore how Polyglot Notebooks allows you to import dotnet code from stand alone files DLLs and NuGet packages so your notebooks can take advantage of external code files and the same libraries that you can work with from your code in Visual Studio Importing Local Code FilesFirst of all if you have a small amount of code that lives in an individual C file and you wanted to reference it in your notebook you can do this via the import magic command as shown below import Person csThis assumes that there is a file named Person cs in the current directory but assuming it is present the code in that file will be imported as if you had declared it in your notebook This can be helpful for hiding code like test data or class definitions that isn t the main focus of your notebook If your code file has issues those issues will typically be displayed immediately below the cell as pictured below However I have noticed at least one instance where an import silently failed and I could not immediately find a good answer as to why If this happens to you I recommend you check VS Code s Output pane and look at the Polyglot Notebook diagnostics data source for additional information NuGet PackagesOften in dotnet code you ll want to refer to packages that others have created to complete common tasks This could be anything from working with JSON APIs machine learning to generating random data The standard dotnet package manager is NuGet Package Manager which many readers will be familiar with from development in Visual Studio It turns out that Polyglot Notebooks support importing NuGet packages via the r magic command followed by the word nuget and then the name of the package you wish to import For example the following block of code imports the Microsoft ML and Microsoft ML AutoML NuGet packages related to ML NET into the Notebook r nuget Microsoft ML r nuget Microsoft ML AutoML When this cell runs you should see the following output After the NuGet packages are installed you ll be able to access public classes and namespaces contained in that package for example using Microsoft ML using Microsoft ML AutoML using Microsoft ML Data MLContext Context new One additional thing I want to point out with installing NuGet packages is that some packages may contain extensions for Polyglot Notebooks If that is the case you will see those extensions detected and installed into your notebook automatically during their installation process Finally you should note that only NuGet packages compatible with your version of the NET SDK are ones you can install Typically this will be something written targeting NET Standard or NET or See my article on installing Polyglot Notebooks for more information on NET versions Pre Release PackagesSometimes you ll want to refer to packages that are currently in pre release To work with these particular files you ll use slightly different syntax for importing them r nuget Microsoft DotNet Interactive SqlServer Here we import the Microsoft DotNet Interactive SqlServer package which does not have a non preview version available at the time of this writing If you do not include the syntax NuGet will automatically exclude pre release packages This is usually a good thing unless you are trying to work with a NuGet package that is not yet released In the case where a NuGet package is in pre release you need to use the syntax to refer to it successfully Custom NuGet FeedsSometimes you work with an organization or team that uses its own private NuGet feed You can tell Polyglot Notebooks about these custom NuGet feeds via the i syntax as shown below i nuget Now when you run NuGet install commands Polyglot Notebook will also search your custom NuGet feed Note the above website is fictitious and should not be used Replace this instead with your custom NuGet feed s actual URL Most users won t need to care about this feature but this is very handy if you have a special shared NuGet feed that you and your team use Importing Local DLLsIf you want to work with a local dll file with dotnet code you can import that using the following code r DLLs Bogus dll This is very similar to referencing a NuGet package but doesn t require the nuget prefix and uses a path to the actual dll file instead of relying on NuGet to find the dependency Realistically you likely won t work with this too much I ve used this feature to test local projects before publishing them to NuGet and to demonstrate things at conferences where I knew I wouldn t have reliable internet access to install remote dependencies Additionally I ve noticed that while referencing NuGet packages extensions are installed automatically this does not seem to happen when installing dll files directly Still being able to work with local dll files can be handy in certain circumstances Closing ThoughtsWhile some of these magic commands to import dependencies can be slightly hard to recall exactly these commands allow you to quickly and easily work with code outside of your notebooks This allows you to focus your notebooks on larger tasks by referencing utilities and libraries from other packages Later on this week I ll illustrate how helpful this can be for working with things like ML NET for Machine Learning and Azure Cognitive Services inside of Polyglot Notebooks Finally never underestimate the value of importing a simple code file in simplifying your notebooks by pulling non critical code out of the notebook and into a separate file I love Polyglot Notebooks and being able to work with other code from our notebooks just makes them even more awesome 2023-05-16 02:25:24
Apple AppleInsider - Frontpage News xrOS has been trademarked in New Zealand ahead of potential WWDC reveal https://appleinsider.com/articles/23/05/16/xros-has-been-trademarked-in-new-zealand-ahead-of-potential-wwdc-reveal?utm_medium=rss xrOS has been trademarked in New Zealand ahead of potential WWDC revealA trademark filing in New Zealand may have confirmed the Apple VR Headset operating system name is xrOS xrOS will be the operating system powering Apple VRRegulatory processes trademarks patents and more can and have revealed Apple s future plans ーbut they are not foolproof sources A trademark filed on Monday might be the final confirmation of Apple s planned name for its virtual reality operating system but it was filed under a shell corporation Read more 2023-05-16 02:59:00
Apple AppleInsider - Frontpage News How to verify your external bank account for Apple Savings transfers https://appleinsider.com/articles/23/05/16/how-to-verify-your-external-bank-account-for-apple-savings-transfers?utm_medium=rss How to verify your external bank account for Apple Savings transfersApple Savings is available for Apple Card holders but many have encountered an error when trying to transfer money to and from their primary bank account Here s what to do to get it fixed Apple Savings provides a high yield APYIf you ve set up an Apple Savings account and can t transfer money directly to and from it with your primary bank it can be an instantly frustrating experience Thankfully there s an easy official fix and a temporary workaround Read more 2023-05-16 02:15:59
金融 ニッセイ基礎研究所 分数について(その5)-学校で学んだ分数を巡る話題- https://www.nli-research.co.jp/topics_detail1/id=74824?site=nli 分数abというのは、その名称が表しているように、基本的には、対象となるものの全体に相当する「分子a」の数をいくつに等しく分けるのかを示す「分母b」の数で割った値、を示している後に説明する「分数が持つ意味」からすれば、必ずしもこのような考え方だけに基づいているわけではないかもしれないが、それらについてはここでは考慮していない。 2023-05-16 11:28:11
金融 ニュース - 保険市場TIMES 住友生命、統合型エンドポイント管理の「Tanium」を採用 https://www.hokende.com/news/blog/entry/2023/05/16/120000 住友生命、統合型エンドポイント管理の「Tanium」を採用信頼できるプラットフォーム住友生命保険相互会社は月日、タニウム合同会社が提供する統合型エンドポイント管理プラットフォーム「Tanium」を採用したと発表した。 2023-05-16 12:00:00
海外ニュース Japan Times latest articles Tesla’s new car-making process stokes debate among industry experts https://www.japantimes.co.jp/news/2023/05/16/business/tesla-unboxed-assembly-process-analysis/ Tesla s new car making process stokes debate among industry expertsMusk believes the company needs to radically rethink conventional manufacturing methods in order to build more affordable ーand profitable ーelectric vehicles in higher 2023-05-16 11:26:19
海外ニュース Japan Times latest articles ‘Bangkok Spring’ sets up showdown over role of Thai monarchy https://www.japantimes.co.jp/news/2023/05/16/asia-pacific/bangkok-spring-thai-monrarchy-showdown/ Bangkok Spring sets up showdown over role of Thai monarchyThe push to directly change laws affecting the monarchy breaks a longstanding taboo ーeven the suggestion of disloyalty to the palace has been grounds 2023-05-16 11:09:47
ニュース BBC News - Home Ukraine war: Kyiv comes under missile attack https://www.bbc.co.uk/news/world-europe-65606385?at_medium=RSS&at_campaign=KARANGA defence 2023-05-16 02:50:19
ビジネス ダイヤモンド・オンライン - 新着記事 頼まれ仕事、いかにイエスと言わせるか - WSJ発 https://diamond.jp/articles/-/323002 仕事 2023-05-16 11:15:00
マーケティング MarkeZine 三菱UFJ銀行とTBT Labグループ、資本業務提携を締結 メタバース経済圏の創出およびアジア展開へ http://markezine.jp/article/detail/42236 tbtlab 2023-05-16 11:15:00
IT 週刊アスキー 福岡市、外国人向け観光情報ウェブサイト「Fukuoka City Official Tourist Guide」開設 https://weekly.ascii.jp/elem/000/004/136/4136750/ acityofficialtouristguide 2023-05-16 11:20:00
マーケティング AdverTimes 9割がSDGsにポジティブな印象と回答 テーマごとの認知度に課題も https://www.advertimes.com/20230516/article419223/ teamsdgs 2023-05-16 02:53:57

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)