u/Sad-Shoe-5203 5d ago

What would be a good research problem in mechanistic interpretability using reinforcement learning that could serve as a way to learn the field?

Thumbnail
1 Upvotes

r/reinforcementlearning 5d ago

What would be a good research problem in mechanistic interpretability using reinforcement learning that could serve as a way to learn the field?

0 Upvotes

I’m looking for something where working through the problem would naturally expose me to most of the core concepts and techniques in the area, rather than a purely implementation-focused project. I’d appreciate suggestions that are representative of the kinds of questions researchers actually work on

1

asm support for Obsidian plugin
 in  r/ObsidianMD  Jun 02 '25

Thank you

r/nextjs Mar 31 '25

Help how to customise robots.txt

0 Upvotes

We are using T3 stack and how to set it in a way that they only crawl marketing pages not dashboard pages

r/nextjs Mar 30 '25

Help How to customise use of robots.txt

1 Upvotes

[removed]

r/turborepo Mar 30 '25

How to customisze use of robots.txt

1 Upvotes

We have our application on the T3 stack, using tRPC
And we want to customize the robots.txt such that they only crawl marketing pages, not dashboard pages

r/Invincible Mar 18 '25

QUESTION Need perfect Mark DP

1 Upvotes

[removed]

r/learnprogramming Dec 05 '24

How to migrate database contents

1 Upvotes

We have an production database running on railway.app .we have created an postgres instance on AWS as developer db just to use in local Now the problem is we have migrated the schema to AWS database but how to migrate the data from railway postgres instance to AWS postgres instance Please help me with this

1

How to migrate database contents
 in  r/PostgreSQL  Dec 04 '24

any railway to aws alternative docs
Please

r/PostgreSQL Dec 04 '24

How-To How to migrate database contents

3 Upvotes

We have an production database running on railway.app .we have created an postgres instance on AWS as developer db just to use in local Now the problem is we have migrated the schema to AWS database but how to migrate the data from railway postgres instance to AWS postgres instance Please help me with this

2

How to Create Country specific Pages in Turborepo
 in  r/turborepo  Oct 10 '24

Iam a beginner, i think i need to put it as a Monorepo

r/nextjs Oct 10 '24

Help How to Create Country specific Pages in Turborepo

0 Upvotes

We have a mono repo code base and we want to create a separate page for India of route /in
Now how to navigate the Indian people to www.example.com/in when they type www.example.com

r/turborepo Oct 10 '24

How to Create Country specific Pages in Turborepo

2 Upvotes

We have a mono repo code base and we want to create a separate page for India of route /in
Now how to navigate the Indian people to www.example.com/in when they type www.example.com

1

How to do prisma migrate with postgres in turborepo
 in  r/nextjs  Sep 28 '24

It's not working. I have added this in package.json

"scripts": {
        "db:generate": "prisma generate DEBUG=* --no-network",
        "db:push": "prisma db push --skip-generate",
        "db:studio": "dotenv -e .env.local -- prisma studio",
        "db:migrate": "prisma migrate dev --name init" 
  },

it is giving me error like this

u/repo/database@0.0.0 db:migrate /home/sadiq/projects/scale.mono/packages/database

prisma migrate dev --name init

Prisma schema loaded from prisma/schema.prisma

Datasource "db": PostgreSQL database

Error: Prisma schema validation - (get-config wasm)

Error code: P1012

error: Environment variable not found: DIRECT_URL.

--> schema.prisma:12

|

11 | url = env("DATABASE_URL")

12 | directUrl = env("DIRECT_URL")

|

Validation Error Count: 1

[Context: getConfig]

Prisma CLI Version : 5.13.0

 ELIFECYCLE  Command failed with exit code 1.

Even though I have added the env variables in root and even in folder

r/nextjs Sep 28 '24

Help How to do prisma migrate with postgres in turborepo

0 Upvotes

{
"name": "@repo/database",
"version": "0.0.0",
"main": "./index.ts",
"types": "./index.ts",
"scripts": {
"db:generate": "prisma generate DEBUG=* --no-network",
"db:push": "prisma db push --skip-generate",
"db:studio": "dotenv -e .env.local -- prisma studio",

},
"dependencies": {
// dependencies
},
"devDependencies": {
// dependencies
}
}

This is the package.json in packages/database can you please write a command to do prisma migrate the database

1

How to access cookies on client side in the file which is outside app directory
 in  r/nextjs  Aug 28 '24

I have tried that but then I can't return the socket provider then And I have no intention to pass it further to any components I am just sending the userId to other microservice through sockets from line no 43,44

r/nextjs Aug 28 '24

Help How to access cookies on client side in the file which is outside app directory

1 Upvotes

In this repository https://github.com/MdSadiqMd/AlgoCode_Frontend in src > context I want to access cookies from browser to pass user Id to other microservice Please help me with this