similar to: Ruby on Rails( Text Segmentation)

Displaying 20 results from an estimated 70000 matches similar to: "Ruby on Rails( Text Segmentation)"

2013 Apr 26
1
remote backend
So, given what I've read in the documentation I would create a text file named document_database.txt that might have the following: remote 192.168.1.10:30000 chert /var/lib/xapian_database/segment1 remote 192.168.1.10:30000 chert /var/lib/xapian_database/segment2 remote 192.168.1.10:30000 chert /var/lib/xapian_database/segment3 etc. I would then in my PHP program open
2017 Aug 10
1
"Help On optim"
Hello, I have some parameters from Mclust function. The parameters are in the form *parametersDf * * mu_1 mu_2 var_mc1 var_mc2 c1 c2 * *2 1.357283 2.962736 0.466154 0.1320129 0.5258975 0.4741025 * *21 8.357283 9.962736 0.466154 0.1320129 0.5258975 0.4741025 * Each row in the above data frame
2010 Jul 21
0
Piecewise regression using lme()
Hi everyone, I'm trying to fit a of piecewise regression model on a time series. The idea is to divide the series into segments and then to apply linear regression models on each segment but in a "global way" and considering heteroskedasticity between the segments. For example, I build a time series y with 3 segments: segment1=1:20+rnorm(20,0,2) segment2=20-2*1:30+rnorm(30,0,5)
2010 Jan 07
1
adding 3D arrows to 3D plots
Greetings, I would like to add 3D arrows (i.e. arrow-headed vectors linking X1Y1Z1 to X2,Y2,Z2) to a 3D plot; ideally the sort of plot that can be rotated interactively. Is this possible using plot3d, or another 3d plotter in R? While it is easy to draw segments in plot3d (e.g. below), I haven't figured out how to add arrow heads, or to create 3d arrows from scratch. ##two headless
2010 May 09
1
lattice: customising panel.segments using groups
Hi, I want to customise the segments on an xyplot. Below is a simple example of what I'm trying to do... #Example dataset x <- c(-0.25, 0.25, 0.8) y <- c(-0.5, 0, 0.75) gp <- c("A", "I", "C") my.data <- cbind.data.frame(x,y,gp) #setting up the parameters to customise the lines with. ltype <- c(1,2,3) env.col <-
2010 Jun 02
0
Segmentation fault on paste a long text into Scintilla
Hi there, In bundled samples\scintilla.rb, paste a long one-line text (see below) caused segmentation fault scintilla.rb:166: [BUG] Segmentation fault ruby 1.8.7 (2010-01-10 patchlevel 249) [i386-mingw32] However, It was Ok if not including last 100 or so characters (worked on 13100 characters). Cheers, Zhimin -- text copied <tbody><tr><td
2006 Oct 30
1
session variable difficulty in Ruby on Rails
Hi My application has many users. If I log in as "admin", then someone else logs in as "fred", when I save something then it is updated by "Fred" not "admin". i.e. The session variable used is the last one registered. Cookies might be a way to solve this or I could store the session in the database....What do you think is the best way to overcome this in
2004 Feb 23
1
Segmentation fault with fix() (PR#6605)
Full_Name: Federico Gherardini Version: 1.8.1 OS: Gentoo linux Submission from: (NULL) (81.208.36.89) When I use fix() to edit a matrix R immediately quits with a segmentation fault if I use the copy button in the graphical device window. Clicking on the name of the variables completely messes up the screen too. In this case you have to close the grahpic device and call fix() again. I've
2006 Apr 26
0
mysql-ruby produces segmentation fault on close
Hi Everyone, I have been having a strange issue with the mysql-ruby package and can''t seem to find any posts anywhere on the net that have been helpful. The package makes and installs perfectly, and in-fact it even connects to the MySQL database and can perform queries. However, any attempt to close() the connection to the MySQL database produces a segmentation fault. This has wreaked
2011 Feb 01
0
Vacancy Senior Ruby on Rails Developer (Ukraine, Kyiv) possible remote in Ukraine
Our project is a service for C2C and B2C segments of the global online market. It''s orientation is a wide segment of customers – users of online markets, classifieds, auctions, etc. Project is designed for the worldwide usage, starting with the biggest markets: USA, China and Western Europe. Our goal is to obtain the senior position in the worldwide B2C market, through taking a
2011 Jan 29
0
Vacancy Senior Ruby on Rails Developer (Kyiv)
Our project is a service for C2C and B2C segments of the global online market. It''s orientation is a wide segment of customers – users of online markets, classifieds, auctions, etc. Project is designed for the worldwide usage, starting with the biggest markets: USA, China and Western Europe. Our goal is to obtain the senior position in the worldwide B2C market, through taking a
2009 Mar 12
8
Segment error loading rails
I have downloaded ruby 1.9.1 binaries to c:\ruby191 (I have ruby 1.8.6 under c:\ruby). I then downloaded gems 1.3.1 and ran "gem install rails --include-dependencies" from c:\ruby191\bin and it ran and came up with a segment error and killed the rails install. Any ideas what I am doing wrong? Thanks Chris -- Posted via http://www.ruby-forum.com/.
2006 May 25
0
Fwd: [Ruby on Rails] #5181: Autocomplete: How do i format the text in the drop down?
Howdy... How can the text be formated on the downloadable sample (\scriptaculous-js-1.6.1\test\functional\ajax_autocompleter2_test.html)? In your downloadable demo... the format of the drop down (in the txt area) is a ordered list.. where and how is this formatted? and is it possible to use a CSS on it? If so.. how would i do that? I like the formatting you have on your demo
2007 Mar 25
5
Insert text into text area field with RJS
Hi, I''d like to insert/append some default text into a text area after clicking on an image button ''test.png'' in edit.rhtml: <%= link_to image_tag("test.png"), url => { :action => :new_text } %> Action: # article_body is the textarea''s id. def new_text render :update do |page| page.insert_html :bottom, :article_body,
2009 Jun 15
3
Removing metadata segmentation
Hello all, I run the streaming for a community radio station. We're streaming 160k/s ogg via icecast. For an archive mechanism, I have a scheduler which starts a pseudo listener and archives to a file, via wget: wget http://stream/stream.ogg -O "show name.ogg" That works fine. The scheduler starts recording 30s before shows start and 2m after they end. We're also doing
2016 May 31
0
[RFC] Using segmentation to harden SafeStack
Hi, SafeStack currently relies on address randomization to protect the safe stack. If the location of a safe stack is somehow revealed and a corrupted pointer references it, then a safe stack can be corrupted. The creators of SafeStack envisioned the possibility of using X86 segmentation to further harden SafeStack against such corruption (see the comment near the top of
2008 Jun 07
2
rcov causing a segmentation fault on rspec 1.1.4 and rails 2.1
Hello again :) I''m trying to run rcov on my specs here but i''m getting a lot of segmentation faults (and they usually happen at different places): /home/mauricio/NetBeansProjects/reeds/vendor/rails/activerecord/lib/active_record/attribute_methods.rb:211: [BUG] Segmentation fault ruby 1.8.6 (2007-09-24) [i486-linux]
2011 Feb 03
1
How to transfer a javascript value into a symbol used in Ruby on Rails
Hi, I am currently using Rails 2.0.2 with Ruby 1.8.7. My Prototoype.js version is 1.7(if required). I am basically trying to integrate the calendar_date_select plugin in my app. The link/tutorial I am referring is: http://ianli.com/site/HowTo/UseCalendarDateSelectRailsPlugin I am trying to save the date I receive through the date select plugin and store in a rails symbol :publishing_date. I am
2009 Jan 13
9
Segmentation Fault : [i386-mswin32] in wxruby
Greetings, I have created a GUI to generate a output text file using wxruby. my program codes are about ~1400 lines. ruby : 1.8.6 wxruby : 1.9.7 rails : 2.1.0 FYI, I am using the TextCtrl & combobox in the main GUI to get the output file name and main settings. after clicking the button, it will pop up another frame which let user to select and modified settings with TextCtrl & combobox.
2009 Jul 08
3
[LLVMdev] ARM cross compiling causes segmentation fault
Hello, I built a llvm toolchain for ARM and I'm trying to build a simple application on ARM using LLVM. When I compiled the code, it has the following message and the binary code has a segmentation fault when it is executed. /tmp/ccJPjMe4.s: Assembler messages: /tmp/ccJPjMe4.s:4250: rdhi, rdlo and rm must all be different /tmp/ccJPjMe4.s:4589: rdhi, rdlo and rm must all be different