小编oli*_*ree的帖子

如何远程连接到 GCP ML Engine/AWS Sagemaker 托管笔记本?

GCP 终于发布了托管 Jupyter 笔记本。我希望能够通过连接到笔记本电脑在本地进行交互。IE。我使用 PyCharm 通过传递其 URL 和令牌参数来连接到外部配置的 jupyter notebbok 服务器。

问题也适用于 AWS Sagemaker 笔记本。

amazon-web-services google-cloud-platform google-cloud-ml amazon-sagemaker gcp-ai-platform-notebook

9
推荐指数
2
解决办法
4340
查看次数

为什么具有相同属性和函数的特定类的两个对象在java中不相等?

在下面的代码中它打印"NotSame"任何人都可以事先告诉我原因感谢...

public class student {

    String name;

    student(String name) {
        this.name = name;
    }

}

public class TestApp{

    public static void main(String[] args) {
        student s1=new student("A");
        student s2=new student("A"); 
        if(s1==s2){
            System.out.println("Same");
        }else{
            System.out.println("NotSame");
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

java

0
推荐指数
1
解决办法
103
查看次数