Skip to content

Instantly share code, notes, and snippets.

View gatheluck's full-sized avatar

Yoshihiro Fukuhara gatheluck

View GitHub Profile

Open AI Deep Researchのテストです

  • モデル:o3-mini-high
  • プロンプト:

https://arxiv.org/pdf/2408.06292

上記URLの"The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery"のようにAIやLLMを使用して、研究テーマの作成、実装、実験、論文の執筆までを自動化する手法についてのサーベイ論文を作成して下さい。参照にする情報は必ず論文に限定して下さい。ただし、arXivに投稿された論文も参照元として許可します。ブログや解説記事の情報は参照しないで下さい。

論文全体の構成は通常のサーベイ論文のように最初に「イントロダクション」があり、いくつかの章があり、最後に「課題と今後の方向性」があるようにして下さい。

Open AI Deep Researchのテストです

  • モデル:o3-mini-high
  • プロンプト:

数式に基づいて生成したデータを使用して教師あり学習を行う手法である、Formula-driven Supervised Learning(FDSL)についてのサーベイ論文を作成して下さい。参照にする情報は必ず論文に限定して下さい。ただし、arXivに投稿された論文も参照元として許可します。ブログや解説記事の情報は参照しないで下さい。

論文全体の構成は通常のサーベイ論文のように最初に「イントロダクション」があり、いくつかの章があり、最後に「課題と今後の方向性」があるようにして下さい。


@gatheluck
gatheluck / settings.json
Last active February 13, 2024 01:33
Setting of vscode
{
"yaml.customTags": [
"!Ref",
"!Sub scalar",
"!Sub sequence",
"!Join sequence",
"!FindInMap sequence",
"!GetAtt scalar",
"!GetAtt sequence",
"!Base64 mapping",
@gatheluck
gatheluck / gist:aae4a4201f6e33828a27267ca186f5ee
Created November 10, 2023 01:04
pyproject.toml setting
[tool.black]
line-length = 88
[tool.mypy]
python_version = "3.8"
# following setting is same as pysen
# https://github.com/pfnet/pysen/blob/main/setup.cfg#L12
check_untyped_defs = true
disallow_any_decorated = false
disallow_any_generics = false
import torch
import dataclasses
def cuda_memory_info(device = torch.device("cuda")):
@dataclasses.dataclass
class CudaMemoryInfo:
device: torch.device
total: int
reserved: int
allocated: int
@gatheluck
gatheluck / test_date.js
Created May 16, 2020 16:59
test date module of js.
var checkoutDate = new Date(2020, 5, 1)
checkoutDate.setDate( checkoutDate.getDate() + 365);
const year = checkoutDate.getFullYear();
const month = checkoutDate.getMonth() + 1;
const date = checkoutDate.getDate();
const day = checkoutDate.getDay();
const formatDay = year+"/"+month+"/"+date;
@gatheluck
gatheluck / set_all_seeds.py
Created April 9, 2020 22:21
Set seed for python, numpy and pytorch for reproductiveity.
import os
import random
import numpy as np
import torch
def set_all_seeds(seed):
random.seed(seed)
os.environ('PYTHONHASHSEED') = str(seed)
np.random.seed(seed)
torch.manual_seed(seed)
@gatheluck
gatheluck / script_gen_render_shapenet.sh
Created November 25, 2019 05:00
script generator which renders each class of ShapeNet dataset.
declare -A ids=([airplane]=02691156 [bench]=02828884 [cabinet]=02933112 [car]=02958343 [chair]=03001627 [display]=03211117 [lamp]=03636649 [loudspeaker]=03691459 [rifle]=04090263 [sofa]=04256520 [table]=04379243 [telephone]=04401088 [watercraft]=04530566)
classes=(airplane bench cabinet car chair display lamp loudspeaker rifle sofa table telephone watercraft)
dataset_path=''
blender_path=''
output_path=''
num_views=24
project=render_shapenet # write project name here!!
@gatheluck
gatheluck / cat_filters.py
Created October 26, 2019 09:00
cat all filters in target path.
import os
import sys
import glob
import copy
from PIL import Image, ImageDraw, ImageFont
import torch
import torchvision
torch.backends.cudnn.benchmark=True
@gatheluck
gatheluck / camera_optimization.py
Last active October 21, 2019 13:06
comparison of camera parameter optimization example of NMR and SoftRas. When use both model at same time, it will lead nan loss value.
import os
import argparse
import glob
import torch
import torch.nn as nn
import numpy as np
from skimage.io import imread, imsave
import tqdm
import imageio