• 1 Post
  • 51 Comments
Joined 7 months ago
cake
Cake day: February 1st, 2024

help-circle







  • Only briefly skimmed, but don't you need nonlinearity for these things to work (e.g., rectifier, sigmoid...)? Else, it's just linear algebra, and more layers can't help (since matrices can be multiplied, the dimensionality is the only thing that matters). I don't think you can really get nonlinearity with one bit.

    Not my field, so I'm sure I'm missing something. If anyone wants to ELI5 though...


  • As far as reinstalling and losing your data, you may want to just backup /home to a USB disk now.

    You'll want to figure out the VPN issue, so maybe post what you know about that. Also post ifconfig -a or ip addr show. Also the output of route for good measure. Can you ping anything? Is it just a nameserver issue (try pinging 8.8.8.8 and kernel.org, for instance)?

    Once you have network access, I'd install tmux if you're going to be spending any significant time debugging in the terminal :)


  • I like the sentiment, but there are non-peer reviewed papers that are real science. Politics and funding are real things, and there is a bit of gatekeeping here, which isn't really good IMHO.

    Also, reproducibility is a sticky subject, especially with immoral experiments (which can still be the product of science, however unsavory), or experiments for which there are only one apparatus in the world (e.g., some particle physics).









  • My 2¢ is that running Linux, you play the role of user and of sysadmin. On some distros you only put on the sysadmin hat once in a blue moon, but on others you're constantly wearing it.

    My Arch experience is a few years out of date; I felt I played sysadmin more than, say, Debian Stable, but it wasn't too onerous. I also had an older Nvidia card, so there were some...fun issues now and then.

    I use Debian on my machines now, and am happy. Try some different distributions! Even better, have /home on its own partition (better yet, own disk) --- changing distros can be nice and easy without worrying about your personal data.


  • Makefile in other comments. You'll need something like this on the title page (this assumes you use my Makefile which puts the version in VERSION.tex [that's the literal name of the file, not a placeholder]):

    {\bf{\color{red}DOCUMENT REVISION:}} {\color{blue}\input{VERSION}}


  • I also had some Makefiles in other directories, e.g., for my media/ I had:

    MAKE = make -s
    RECURS = svgs/
    
    recurs: $(RECURS)
            @$(foreach DIR, $(RECURS), \
                    echo "MAKE      (CD)    $(CURDIR)/$(DIR)"; \
                    $(MAKE) -C $(DIR) $(MAKECMDGOALS);)
            @echo "MAKE     (CD)    $(CURDIR)/"
    
    all: recurs
    
    clean:
    
    allclean: recurs clean
    

    and for media/svgs/:

    SVG_FILES := $(wildcard *.svg)
    PDFDIR := ./
    PDF_FILES := $(patsubst %.svg,$(PDFDIR)/%.pdf,$(SVG_FILES))
    
    all: $(PDF_FILES)
    
    clean:
            @rm -f $(PDF_FILES)
            @echo "SH       (RM)    Tidying up derived PDFs"
    
    allclean: clean
    
    $(PDFDIR)/%.pdf: %.svg
            @inkscape -T --export-pdf=$@ $<
            @echo "INK      (PDF)   $<"