Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

shreyaspullehf
/
superconductor-search-v1

Sentence Similarity
sentence-transformers
Safetensors
mpnet
feature-extraction
dense
Generated from Trainer
dataset_size:11515
loss:CosineSimilarityLoss
text-embeddings-inference
Model card Files Files and versions
xet
Community

Instructions to use shreyaspullehf/superconductor-search-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use shreyaspullehf/superconductor-search-v1 with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("shreyaspullehf/superconductor-search-v1")
    
    sentences = [
        "how sputtering operates",
        "Brian David Josephson (born 4 January 1940) is a British theoretical physicist and emeritus professor at the University of Cambridge. He shared the 1973 Nobel Prize in Physics with Leo Esaki and Ivar Giaever for his discovery of the Josephson effect, made in 1962 when he was a Ph.D. student at Cambridge.\nJosephson has spent his academic career as a member of the Theory of Condensed Matter Group in Cambridge's Cavendish Laboratory. He has been a Fellow of Trinity College, Cambridge, since 1962, and served as Professor of Physics from 1974 until 2007.\nIn the early 1970s, Josephson took up Transcendental Meditation and turned his attention to issues outside the boundaries of mainstream science. He set up the Mind–Matter Unification Project at Cavendish to explore the idea of intelligence in nature, the relationship between quantum mechanics and consciousness, and the synthesis of science and Eastern mysticism, broadly known as quantum mysticism. He has expressed support for topics such as parapsychology, water memory and cold fusion, which has made him a focus of criticism from fellow scientists.\n\n\n== Education ==\nBrian David Josephson was born on 4 January 1940 in Cardiff, Wales, to Jewish parents, Abraham Josephson and Mimi Weisbard. He attended Cardiff High School, where he credits some of the school masters for having helped him, particularly the physics master, Emrys Jones, who introduced him to theoretical physics. In 1957, he went up to Cambridge, where he initially read mathematics at Trinity College, Cambridge. After completing Maths Part II in two years, and finding it somewhat sterile, he decided to switch to physics.\nJosephson was known at Cambridge as a brilliant but shy student. Physicist John Waldram recalled overhearing Nicholas Kurti, an examiner from Oxford, discuss Josephson's exam results with David Shoenberg, Reader in Physics at Cambridge, and asking: \"Who is this chap Josephson? He seems to be going through the theory like a knife through butter.",
        "arXiv:1008.4418v1 [cond-mat.supr-con] 26 Aug 2010 The Physical Origins of the Meissner Effect and London Penetration Depth X. Q. Huang1,2∗ 1Department of Physics and National Laboratory of Solid State Microstructure, Nanjing University, Nanjing 210093, China 2Department of Telecommunications Engineering ICE, PLAUST, Nanjing 210016, China Based on the recent developed real-space theory of superconductivity (arXiv:0910.5511 and arXiv:1001.5067), we study the physical nature of the Meissner effect and London penetration depth in conventional and non-conventional superconductors. It is argued that they originate from an exactly the same reason of the real-space quasi-one-dimensional periodic dynamic charge stripes in the superconductors. The fundamental relationship between the London penetration depth and the superconducting electron density is qualitatively determined. PACS numbers: 74.20.z, 74.25.Ha Introduction: The Meissner Effect is the most fundamen- tal and the most dazzling property of materials in the super- conducting state [1]. To explain the Meissner effect that no magnetic field exists in the interior of a superconductor, the London brothers proposed two equations to describe the mi- croscopic electric field E and magnetic field B within the su- perconductor [2]. The first London equation is in fact the sim- ply Newton’s second law for the superconducting electrons: ∂Js ∂t = nse2 me E, (1) where Js = nsevs is the supercurrent density, ns is the su- perconducting electron density and vs is the superfluid veloc- ity. Taking into account Maxwell’s equation of ∇× E = −∂B/∂t, then the second London equation can be written as ∇× Js = −nse2 me B. (2) The London equations (1) and (2) imply a characteristic length scale λL = p me/µ0nse2, the so-called London pen- etration depth, which gives the length scale over which an external applied field is exponentially suppressed. For most superconductors, the London penetration depth λL is on the order of 100 nm. In 1950, Ginzbu",
        "Unconventional superconductors are materials that display superconductivity which is not explained by the usual BCS theory or its extension, the Eliashberg theory. The pairing in unconventional superconductors may originate from some other mechanism than the electron–phonon interaction. Alternatively, a superconductor is unconventional if the superconducting order parameter transforms according to a non-trivial irreducible representation of the point group or space group of the system. Per definition, superconductors that break additional symmetries to U (1) symmetry are known as unconventional superconductors.  \n\n\n== History ==\nThe superconducting properties of  CeCu2Si2, a type of\nheavy fermion material, were reported in 1979 by Frank Steglich. For a long time it was believed that CeCu2Si2 was a singlet d-wave superconductor, but since the mid-2010s, this notion has been strongly contested. In  the early eighties, many more unconventional, heavy fermion superconductors were discovered, including UBe13, UPt3 and URu2Si2. In each of these materials, the anisotropic nature of the pairing was implicated by the power-law dependence of the nuclear magnetic resonance (NMR) relaxation rate and specific heat capacity on temperature. The presence of nodes in the superconducting gap of UPt3 was confirmed in 1986 from the polarization dependence of the ultrasound attenuation.\nThe first unconventional triplet superconductor, organic material (TMTSF)2PF6, was discovered by Denis Jerome, Klaus Bechgaard and coworkers in 1980 (TMTSF = Tetramethyltetraselenafulvalenium, see Fulvalene). Experimental works by Paul Chaikin's and Michael Naughton's groups as well as theoretical analysis of their data by Andrei Lebed have firmly confirmed unconventional nature of superconducting pairing in (TMTSF)2X (X=PF6, ClO4, etc.) organic materials.\nHigh-temperature singlet d-wave superconductivity was discovered by J.G. Bednorz and K.A. Müller in 1986, who also discovered that the lanthanum-based"
    ]
    embeddings = model.encode(sentences)
    
    similarities = model.similarity(embeddings, embeddings)
    print(similarities.shape)
    # [4, 4]
  • Notebooks
  • Google Colab
  • Kaggle
superconductor-search-v1
439 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
Shreyas Pulle
Upload folder using huggingface_hub
941dddc verified 7 months ago
  • 1_Pooling
    Upload folder using huggingface_hub 7 months ago
  • .gitattributes
    1.52 kB
    initial commit 7 months ago
  • README.md
    49.2 kB
    Upload folder using huggingface_hub 7 months ago
  • config.json
    545 Bytes
    Upload folder using huggingface_hub 7 months ago
  • config_sentence_transformers.json
    277 Bytes
    Upload folder using huggingface_hub 7 months ago
  • model.safetensors
    438 MB
    xet
    Upload folder using huggingface_hub 7 months ago
  • modules.json
    349 Bytes
    Upload folder using huggingface_hub 7 months ago
  • sentence_bert_config.json
    57 Bytes
    Upload folder using huggingface_hub 7 months ago
  • special_tokens_map.json
    964 Bytes
    Upload folder using huggingface_hub 7 months ago
  • tokenizer.json
    711 kB
    Upload folder using huggingface_hub 7 months ago
  • tokenizer_config.json
    1.62 kB
    Upload folder using huggingface_hub 7 months ago
  • training_metadata.json
    382 Bytes
    Upload folder using huggingface_hub 7 months ago
  • vocab.txt
    232 kB
    Upload folder using huggingface_hub 7 months ago